Search results

  1. F

    Show values from table in page title

    ha! I should have posted this earlier, but here you go: put this in your include/header.php as replacement of the <title></title> tag <?php // start custom title tag $connection = mysql_connect("localhost", "your_username", "your_password"); mysql_select_db("your_database", $connection)...
  2. F

    setting up a dev. system

    the dev site is on on the same server as the production site, and the same mysql installation. I finally solved the problem by using a different user/password combination for the dev.db in mysql. Phew. Thx for all the help!
  3. F

    setting up a dev. system

    Thx marcello, I checked already (see first post). No mistakes here. I did a search through all code, and no links or something to the live installation. Nothing :/ I had a thought about my browser already having a connection to the live installation/db, maybe the dev.setup uses that too? In...
  4. F

    setting up a dev. system

    I want to setup a developing system, to develope & test new things, before they go live. So I made a copy of my website and created a subdomain. Same for the database. Now I only had to change $db_name and $site_url to point to the dev.mysql database. Normally. But it doesn't work, no matter...
  5. F

    styling specific areas

    good one! thx
  6. F

    DaDaBik as a backend - example scripts

    #DiscoParadise - http://www.discoparadise.com A website for (Italo) Disco related media. The Label Database is made in Dadabik, but you got to register (via phpbb forum which will handle login matters) before you can access it.
  7. F

    Example sites

    dunno about amazon, but the functionality like Discogs ( http://www.discogs.com ) can be created with Dadabik. I think that's the most logic setup anyway for a music database. Think of a db with many related tables, tables for Artists, Releases, Tracks, Labels. Create a Dadabik setup for every...
  8. F

    creating a subset of one table to another

    You can try to add it to index.php: // display the HTML details table echo $details_table; After that you can include another dadabik with a relation: include("http://yourwebsite/otherdadabiksetup/index.php?&table_name= table_wk_req&function=search&where_clause= `table_wk_req...
  9. F

    creating a column for ads

    in that post I made some custom changes, which will probably not work for others. Sorry :) let's take a fresh file in 4.0 beta 2: business_logic.php change line 2632: $results_table .= "<tr>"; to: $results_table .= "<tr style=\"cursor:pointer\" onMouseOver=\"this.bgColor='#D7DEE5'\"...
  10. F

    creating a column for ads

    You're welcome :)
  11. F

    creating a column for ads

    yep, please take a look at the source of http://www.outlab.net/info/release/323 again, I placed some remarks where header/footer.php begin & end. Those files are made for that purpose btw. I can't give you the source codes of those files, but I did use some extra blocks of code, for example to...
  12. F

    creating a column for ads

    Sorry, I had to change DNS for outlab yesterday :/ on outlab.net I used Dadabik for the music collection listings, like http://www.outlab.net/info/release/323 that page is entirely coming from dadabik, you'll have to change header.php & footer.php for that. For example, the 3 'blocks' of...
  13. F

    where I find the "s_equal/contains..."?

    http://www.dadabik.org/index.php?function=show_documentation see 'Search operator'
  14. F

    Anyone??? ---------->Change display order without adding leading zeros?

    I had this once too, and solved it with the use of: ORDER BY (number+0) but I don't know how to change that in the code :/ Post Edited (03-03-06 09:57)
  15. F

    show search phrase in result page

    1. you're right, I changed it 2. do you have the field 'all_fields' in your table? also, I changed the search form, you can see how in the source: http://www.outlab.net/db/db.php
  16. F

    How to change search options?

    see http://www.dadabik.org/index.php?function=show_documentation you can change the 'Search operator' field to only: contains
  17. F

    Show values from table in page title

    Hi, I was wondering, how can I get some values from a table into the page title. Example, on this page I want at least the first value (which is 'Cultural Vibe - Mind Games') in the page title too. So it will become: Outlab | Cultural Vibe - Mind Games any ideas? Thx Paul
  18. F

    DaDaBik as a backend - example scripts

    Outlab.net a music collection database Post Edited (01-08-06 08:07)
  19. F

    show search phrase in result page

    Thx, I tried to find it too but no luck
  20. F

    Detail column modification?

    I added the details link to the the whole table row, in business_logic.php around line 2508: search for: $results_table .= "<tr>"; change to: $results_table .= "<tr style=\"cursor:pointer\" onMouseOver=\"this.bgColor='#829FB0'\" onMouseOut=\"this.bgColor='#ffffff'\"...
Top