Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
<form action="search.php" method="post">
<input type="text" name="search" size="30" />
<input type="submit" value="search" />
</form>
<?php
$host = "host";
$user = "potrebitel";
$pass = "pass";
$db = "baza danni";
$connect = mysql_connect($host, $user, $pass);
$select = mysql_select_db($db, $connect);
$search = $_POST['search'];
$result = mysql_query("SELECT * FROM tablica WHERE ne6to LIKE '$search%'");
while($row = mysql_fetch_array($result)){
echo $row['ne6to']. "<br>";
echo "<hr/>"; }
?>
$result = mysql_query("SELECT * FROM tablica WHERE ne6to LIKE '$search%' OR ne6to2 LIKE '$search%' OR ne6to3 LIKE '$search%'");
Нещо такова: http://code-bg.com/1367