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
https://forums.phpfreaks.com/topic/83428-php-search-mysql-database/
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'%");
?>

 

 

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.