Hi, I have an html form with 1 listbox. The "action=" points to a .php script. If a user chooses an option in the list box it will return the records with the selected criteria. I would like to add more listboxes to the form but I'm having trouble with the SELECT statement. The lone listbox is named "title" and the following is my select satement:
$sql = "SELECT * FROM contacts WHERE (title='$title')";
Any help would be appreciated
Thanks
$sql = "SELECT * FROM contacts WHERE (title='$title')";
Any help would be appreciated
Thanks