I dont know if I am doing this right but here is what I have so far:
<?
$username="root";
$password="";
$database="tracker";
$server="localhost";
mysql_connect($server,$username,$password);
@mysql_select_db($database) or die( "Unable to select database");
$result = mysql_query ("SELECT * FROM request WHERE Headline LIKE '%ticket_number_search%'");
echo $result;
mysql_close();
?>
My intent is to have a text field (ticket_number_search) with a search button that when clicked searches for the value in the text field.
Im I on the right track?
How do I make the button do the search?