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 TouchToneTommy 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: *

  • Users: queryguy
  • Content: Threads
  • Order by date
  1. queryguy

    Count as 1 on same name

    This code will count the numbers of rows each name have and add up. $pqfinal=0 $pq="select * from cmp where cid='$cid'"; $pqresult = mysql_query ($pq); while($pqlist = mysql_fetch_array($pqresult)) { $q="select * from cmp where pid='$pqlist[pmid]'"; $results = mysql_query...
  2. queryguy

    multiple keywords search problem

    $terms = explode(&quot; &quot;, $_GET[&quot;items&quot;]); $query = &quot;SELECT * FROM warehouse WHERE&quot;; $numterms = count($terms); for($b = 0; $b < $numterms; $b++) { $terms[$b] = trim($terms[$b]); if($b > 0) { $query .= &quot; OR&quot;; } $query .= &quot; items LIKE '%&quot...
  3. queryguy

    close browser update database

    Hi experts, is there a way to update my database upon closing the browser without any popup window? For example like a chat room, when you close the browser it update the database and let other know you have left the chat room. I tried onunload but it doesn't seem to work... maybe the closing...
  4. queryguy

    close browser update database

    Hi experts, is there a way to update my database upon closing the browser without any popup window? For example like a chat room, when you close the browser it update the database and let other know you have left the chat room. I tried onunload but it doesn't seem to work... maybe the closing...
  5. queryguy

    Hello, How can display the list

    Hello, How can display the list of checked checkbox according to database value? So when the uses want to edit the info, he/she knows that which are the one already being check. ok this is my form <form action=&quot;submit.php&quot; method=&quot;post&quot;> <input type=&quot;checkbox&quot...
  6. queryguy

    Contain certain digit script

    Need urgent assistant here please. I need to block an IP address which contains 213.136 (213.136.110.134) the first six digit from signing up my site because this user has been causing a nuisance, I blocked his IP adress but make not use because this user is not using static IP address.. but...
  7. queryguy

    Matching

    I am doing a matching script for my site, have problem on the results and sending out part. ------ I have a &quot;users&quot; column on my tablea and &quot;users2&quot; column on my tableb. I need to find out who matches tablea &quot;Users&quot; country criteria from tableb &quot;users2&quot...

Part and Inventory Search

Back
Top