Is there no way to use the wildcard % on the $_GET?
$result = mysql_query("SELECT * FROM items WHERE name LIKE '". $_GET['item']."'");
Or is the only way
$temp = $_POST['item'];
$result = mysql_query("SELECT * FROM items WHERE name LIKE '$temp%'");
Can't get it to work on my $_GET, maybu i'm just placing the % wrong 😐