Re: $_GET variable question
Available news archives: comp.lang.tcl - comp.lang.python - comp.security.firewalls - sci.crypt - comp.lang.php - comp.lang.javascript
Google
 
Web news.hping.org


comp.lang.php archive

Re: $_GET variable question

From: Duderino82 <bubbosmail@gmail.com>
Date: Wed Apr 05 2006 - 12:26:16 CEST

a little tip that is not actually the problem here but it migth com in
handy in the future...whenever you use the $_GET into an if statement
remember to use the isset() function.

if (isset($_GET['var']))

is better then:

if ($_GET['var'])

they should both work but the second may sometime give you some
problems...
Received on Mon May 1 02:48:38 2006