redarrow Posted August 16, 2006 Share Posted August 16, 2006 I have seen this a lot recently but i want to know is my way correct cheers.All i need to know is it the correct way to format a search via the dropdown box.[code]<?phpdatabase connnectionif(isset($_POST['submit'])){$query="SELECT * FROM album WHERE title like '%$titles%' and id='$id' ";$result=mysql_quer($query);while($record=mysql_fetch_assoc($result)){echo $record['titles'];} }?><form method="POST" action""><select name="titles"><option value="hiphop">hiphop</option><option value="rb">r&b</option><option value="pop">pop</option><select><input type="submit" name="submit" value="seach titles"><form>[/code] Link to comment https://forums.phpfreaks.com/topic/17719-search-exsplination-please-cheers/ Share on other sites More sharing options...
tomfmason Posted August 16, 2006 Share Posted August 16, 2006 Looks fine to me. Does it work? Link to comment https://forums.phpfreaks.com/topic/17719-search-exsplination-please-cheers/#findComment-75591 Share on other sites More sharing options...
redarrow Posted August 16, 2006 Author Share Posted August 16, 2006 cheers what i wont to know you see that i set the varable titles in the form.know you see the select statement where it says title like '%titles%' does that mean that tilte is know known as &titles& is that the concept please cheers. Link to comment https://forums.phpfreaks.com/topic/17719-search-exsplination-please-cheers/#findComment-75592 Share on other sites More sharing options...
tomfmason Posted August 16, 2006 Share Posted August 16, 2006 I did this[code=php:0]$sql = mysql_query("SELECT * FROM `test` WHERE `email` LIKE '$email'") or die(mysql_error());while ($rw = mysql_fetch_assoc($sql)) { echo 'The email address is <b>' . $rw['email'] . '</b><br />';}[/code]and it had the same result as this(which is like your example)[code=php:0]$sql = mysql_query("SELECT * FROM `test` WHERE `email` LIKE '%$email%'") or die(mysql_error());while ($rw = mysql_fetch_assoc($sql)) { echo 'The email address is <b>' . $rw['email'] . '</b><br />';}[/code]So I guess it does work. I learn something new every day. Link to comment https://forums.phpfreaks.com/topic/17719-search-exsplination-please-cheers/#findComment-75597 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.