I'm getting closer but not close enough, lol
Here is my code I have:
$user_value = $_POST['myform'];
$dbcxn = mysql_connect("$host","$user","$pswd");
if (!$dbcxn) die ("Could not connect MySQL");
mysql_select_db($dbname,$dbcxn) or die ("Could not open database");
$query = "SELECT * FROM destinations WHERE 'Destination_ID'='.$user_value'";
$result = mysql_query($query) or die ("Query Failed");
And then below that code I have formatting for the results display.
So now when I try to execute this from the form, I goto the new page and I show the table row header but no results.. Do I have something out of place..?
Also when i run this query in sql {phpmyadmin}
SELECT * FROM destinations WHERE 'Destination_ID' = 'Domestic'
It will return results with no error..
But I have not been able to execute this on a standard php page..
thanks
Scott