02-06-2008, 08:25 AM
|
#8 (permalink)
|
|
The Contributor
Join Date: Nov 2007
Location: France, near Paris
Posts: 53
Thanks: 6
|
instead of using isset, use !empty() which verify if the var exists and if is not null. The problem when you use isset is that if a user go to this page: index.php?u= the condition if(isset($_GET["u"])) is validated.
|
|
|