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
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.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.