Posted by Sjoerd on 12/18/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'])
[Reply to this message]
Copyright © 2005-2006 Powered by Custom PHP Programming