Posted by ZeldorBlat on 09/17/05 23:55
>You can use this feature to check if variables exists in a quick-and >dirty way: >@$strUrlParameter=$_GET['Command']; >if(is_null($strUrlParameter)) That is dirty :) Probably a little better like this: if(isset($_GET['Command')) { //do something }
[Reply to this message]
Copyright © 2005-2006 Powered by Custom PHP Programming