In my previous message I reversed ther if and the else so I am reposting.
ok I am a PHP4 guy and I have been doing some work on a php3 server... in php 4 I do this
if(!mysql_query("Select * from table where number = '5'"))
{
echo("if there are not results it displays this");
} else {
echo("If there are results it displays this");
}
but that WILL NOT work on a php3 server Any clues how to do it?
Thanks