Search Page
OK This tutorial will show you how to make a search page.
Firstly we make a form. I am going to use this:
This is the form where we will enter the keywords. Now the next step is to make the searchpage.php.
It will look like this
-
// connect to db
-
-
//check something is sent
-
if ($_POST['word']) {
-
$word= $_POST["word"];
-
// search query
-
$postword = $_POST['word'];
-
echo "Search Results for: <strong> $postword </strong>
-
";
-
echo"
-
";
-
echo"
-
";
-
echo"
-
";
-
echo"
-
";
-
//get results
-
{
-
-
$date = $get['date'];
-
$name = $get['name'];
-
$title= $get['title'];
-
-
//show results
-
-
echo"
-
";
-
echo"
-
";
-
}
-
// if nothing is sent
-
}else {
-
}
-
-
?>
Popularity: unranked [?]

