Jump to content

sql/php help


synchro_irl

Recommended Posts

hey guys

im trying to get my search to work from 3 text boxes now, it worked perfectly with 2 text boxes, i.e. location and trade type, as seen fromthe screen shot which shows the webpage view, and the code that is relevant to the search.

 

i have tried to get teh search to work with 3 textboxes, by adding the following:

$search1=$_POST["search1"];
$search2=$_POST["search2"];
$search3=$_POST["search3"];

$result = mysql_query("SELECT * FROM mytable WHERE location LIKE '%$search1%' AND type LIKE '%$search2%' AND name LIKE '%$search3%' ");

 

and heres the screen shot:

 

searchadminke4.th.png

is this all that is neccessary fo it to work with teh threetext boxes?

 

the name "search3" relates to the name of the new textbox.

 

thanks for the help guys,

steve

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/92178-sqlphp-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.