Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. BeRtjh

    how do i tile my loop results in a table?

    sorry forgot to mention that u have to repeat the for loop.. if you get the info out of a db it should be easy with while(list($variable) = mysql_fetch_row($result))
  2. BeRtjh

    how do i tile my loop results in a table?

    a for loop will do the trick.. for ($i = 0, $i < 3, $i++){ if ($i = 2){ echo 'NEW HEADER'; } echo ' <tr> <td></td> <td></td> <td></td> </tr> '; } }
  3. BeRtjh

    Multiple inputs - how to collect dor MySQL

    you could make a drop down menu.. this should work Hope this helped. Grtz, Bertjh
  4. BeRtjh

    Upload and execute .sql file

    do you want them to create a whole new table, or just change the contents of one? if you want them to create a whole new table, just read out the sql file in a session variable, and execute with mysql_query.. its the same with changing the contents.. hope this helped.
  5. BeRtjh

    Page active for 48hrs

    use the download link as your solution.. start with inserting time in the database, as soon as the person clicks the link, time and expiry date will be inserted in your mysql database.. (start date) (end date) INSERT INTO db VALUES (timestamp, timestamp + 2 days) Hope...
  6. BeRtjh

    About array keys and numerical indexes

    make an if statement, for ($i = 1, $i < $total, $i++){ echo $array($i); } Grtz Bertjh
  7. BeRtjh

    Urlencode() + or %20?

    %20 is the correct way..
  8. BeRtjh

    Help with ordering lists

    maybe the values in the db you use are empty, this might be causing your problem..
  9. BeRtjh

    updating a number of records

    Is the box originally ticked..? Do you want to untick it as an administator or should this be done automatically?
  10. BeRtjh

    imagegif and imagejpeg

    Did it work before? if it did, its not in your php.ini file, you probably just made a mistake somewhere.

Part and Inventory Search

Back
Top