I am sure that I am making a simple mistake of some sort, however, I cannot seem to catch it. I have a website that is connected to a mysql database. With the following lines of code
$query = "SELECT * FROM static_info WHERE s_num = '$sys_num'";
$result = mysql_query($query);
I only get values back if I have $sys_num set to an integer. If I type in a string value for $sys_num, all the fields are returned blank. Any suggestions from the experts out there :wink:
Thanks in advance,
mdc

