![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.php archiveRe: $_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
if (isset($_GET['var']))
is better then:
if ($_GET['var'])
they should both work but the second may sometime give you some
|