fork download
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>表單傳送範例</title>
  6. </head>
  7. <body>
  8. <form method="post" action="php_form1.php">
  9. 請輸入姓名:
  10. <input type="text" name="username" />
  11. <input type="submit" value="送出資料" />
  12.  
  13. <?php
  14. echo "輸入的姓名為:";
  15. echo $_POST["username"];
  16. ?>
  17.  
  18.  
  19. </form>
  20. </body>
  21. </html>
  22.  
Success #stdin #stdout #stderr 0.02s 25540KB
stdin
Standard input is empty
stdout
<!DOCTYPE html>
<html>
<head>
	<meta charset="UTF-8">
	<title>表單傳送範例</title>
</head>
<body>
<form method="post" action="php_form1.php">
	請輸入姓名:
	<input type="text" name="username" />
	<input type="submit" value="送出資料" />
	
	輸入的姓名為:	
	
</form>
</body>
</html>
stderr
PHP Notice:  Undefined index: username in /home/lcvZH2/prog.php on line 15