Курсовая работа: Робота з MYSQL
<title>БІБЛІОТЕКА</title>
</head>
<body>
<h2>ПОШУК ІНФОРМАЦІЇ</h2>
<form action="results.php" method="post">
КРІТЕРІЙ Пошуку: <br>
<select name="searchtype">
<option value="author">АВТОР
<option value="title">НАЗВА
<option value="isbn">ISBN
</select><br>
ВВЕДІТЬ Значення: <br>
<input name="searchterm" type=text><br>
<input type=submit value="Search"> </form></body></html>
Файл "results.php"
<html><head><title>БІБЛІОТЕКА</title></head>
<body><h1>РЕЗУЛЬТАТИ ПОШУКУ</h1>
<?
$searchtype =$_POST["searchtype "];
$searchterm =$_POST["searchterm "];
if (!$searchtype || !$searchterm)
{echo "You have not entered search details. Please go back and try again.";
exit;}
$searchtype = addslashes($searchtype);
$searchterm = addslashes($searchterm);
$db = mysql_pconnect("localhost","root");
if (!$db)
{echo "Error: Немає з’єднання з базою даних.";