Hi,
I am using following code in login form:
<td><input type="hidden" name="txtURL" value="<?=$_GET['url']?>"><input name="submit" type="submit" value="Submit" class="button" /> <input id="reset" name="reset" type="reset" value="Reset" class="button" /></td>
but a coding checker software says that it has security issues in <?=$_GET
I have one more form for login check, there i wrote
if(!isset($result['evoId'])){ header('Location: login.php?action=invalid');
Software gives error in "IF"
and i used this in logi chk
if($txtURL=='reverse'){ header('Location: ABC='); }else{ header('Location: index.php');
It gives error in "if($tx"
please help and suggest
Priyanka