Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<form action="search.php" method="post">
Search for <input type="text" name="searchfor"><br />
<input type="radio" name="column" value="location">In location<br />
<input type="radio" name="column" value="name">In name<br />
<input type="submit" value="GO">
</form>
<?php
$k = $_POST['keywords']; //textbox name
$q = mysql_query("SELECT gid, title FROM search WHERE keywords LIKE '%$k%'") or die(mysql_error());
while(list($gid,$t) = mysql_fetch_row($q)){
echo "<a href=game.php?gid=$gid>$t</a>"."<br>";
}
?>