Jump to content

php search mysql database


suckerr70

Recommended Posts

I have made a posting script in php that works with mysql. I have a few pages that calls for posts depending on the category. If you click the food category link, it will only show stuff from posts with food as the category.

 

Now, I would also like people to be able to search my database for posts and display them. How would I go about doing that? I don't even know where to start. Thanks.

Link to comment
Share on other sites

<?

echo "<form name=\"search\" method=\"post\">";
echo "<select name=\"search_by\">";
echo "<option value=\"title\">Title</option>";
echo "<option value=\"category\">Category</option>";
echo "<option value=\"description\">Description</option>";
echo "</select>";
echo "<input type=\"text\" name=\"search\">";

@$search_by = $_POST['search_by'];
@$search = $_POST['search'];

$sql = mysql_query("SELECT * FROM <your table> WHERE $seach_by LIKE %'$seach'%");
?>

 

 

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.