However I have hit a rather odd problem. I have a PHP script containing a simple login form. I can dun it with the debugger tracking wnat I want and I can see watch values etc. SO that is all fine.
Code: Select all
[i][color=#FF0040]<form name="login"action="valuser.php" method="post" class="message">
<p>Contract Reference</p>
<input type="text" name="client" id="client" value="<?php echo $client ?>" autofocus="autofocus"
onFocus="this.select();" onMouseOut="javascript:return false;"/>
<p>User name </p>
<input type="text" name="username" id="username" value="<?php echo $username ?>"
onFocus="this.select();" onMouseOut="javascript:return false;"/>
<p>Password </p>
<input type="password" name="password" id="password"value="<?php echo $password ?>"
onFocus="this.select();" onMouseOut="javascript:return false;"/>
<input type="submit" value="Log in"/>
</form>[/color][/i]
But surprisingly The slow of the script just dies. The debugger does not move on to the next form (valuser) and because I want to check a $_POST[] value in that form I am stuck.
Is there a setting in the debugger that I beed to set?