Jump to content

search exsplination please cheers.


redarrow

Recommended Posts

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]

<?php

database connnection

if(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

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.

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.