fork download
  1. <html>
  2. <head>
  3. </head>
  4. <body>
  5. <?php
  6. $username = $_GET['txtUserName'];
  7. $password = $_GET['txtPassword'];
  8. echo "<p>UserName : ".$username."</p>";
  9. echo "<p>Password : ".$password."</p>";
  10. ?>
  11. </body>
  12. </html>
Success #stdin #stdout #stderr 0.03s 52480KB
stdin
Standard input is empty
stdout
<html>
	<head>
	</head>
	<body>
		<p>UserName : </p><p>Password : </p>	</body>
</html>
stderr
PHP Notice:  Undefined index: txtUserName in /home/aRBXTy/prog.php on line 6
PHP Notice:  Undefined index: txtPassword in /home/aRBXTy/prog.php on line 7