|
Posted by Sjoerd on 06/14/71 11:48
John wrote:
> What's wrong with my
> nice newbie-code? Here it is:
This is wrong:
> if(strcmp($_POST['check'],"") !="yes"))
These are correct:
if (0 == strcmp($_POST['check'], "yes"))
if ($_POST['check'] == "yes")
if (empty($_POST['check'])
Navigation:
[Reply to this message]
|