fork download
  1. <html>
  2. <head></head>
  3. <title>Demo Get Method </title>
  4. <body>
  5. <form name="frmLogin" action="demoget2.php" method="get">
  6. <label>User Name: </label>
  7. <input type="text" name="txtUserName"/><br/>
  8. <label>Password: </label>
  9. <input type="password" name="txtPassword" /><br/>
  10. <input type="submit" value="Log in"/> <br/>
  11. </form>
  12. </body>
  13. </html>
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
<html>
	<head></head>
	<title>Demo Get Method </title>
	<body>
		<form name="frmLogin" action="demoget2.php" method="get">
			<label>User Name: </label>
			<input type="text" name="txtUserName"/><br/>
			<label>Password: </label>
			<input type="password" name="txtPassword" /><br/>
			<input type="submit" value="Log in"/> <br/>
		</form>
	</body>
</html>