1
123456789
Guest
I want the results that are DISPLAYED for $find to have quotation marks, but I cant seem to do it without messing up the syntax.
Currently returns: John
Need it to return "John"
$anymatches=mysql_num_rows($data);
if ($anymatches == 0)
{
echo "Sorry, there is no Ex-Brief for <b>$find</b> yet
Please try again.<br><br>";
}
}
Currently returns: John
Need it to return "John"
$anymatches=mysql_num_rows($data);
if ($anymatches == 0)
{
echo "Sorry, there is no Ex-Brief for <b>$find</b> yet
Please try again.<br><br>";
}
}