In 1.2 I was accessing some query variables in the URL using the PHP $_GET[] method. I was using this for directing forms, and it worked quite well.
Now in 1.3, the same method works, but throws a PHP Notice:
Error:
A PHP Error was encountered
Severity: Notice
Message: Undefined index: name
Filename: controllers/test.php
Line Number: 67
Line 67:
if($_GET['name']) redirect('test/person/'.$_GET['name']);
Any idea how to access the URL vars properly to avoid this notice? Thanks.
