Board logo

標題: PHP 基礎語法(一) 練習 [打印本頁]

作者: 陳育霖    時間: 2023-9-9 00:47     標題: PHP 基礎語法(一) 練習

請製作如下圖的PHP網頁
index.html
[attach]16424[/attach]
index.php
[attach]16425[/attach]
本帖隱藏的內容需要回復才可以瀏覽

作者: 蔡幸融    時間: 2023-9-9 14:20

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. </head>
  5. <body>
  6.     <h1><?php
  7.     print("你好," . $_POST["name"]);
  8.     ?></h1>
  9.     <a href="123.html">返回</a>
  10. </body>
  11. </html>
複製代碼
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8">
  5.     </head>
  6.     <body>
  7.         <form method="post" action="123.php">
  8.             <label>姓名: </label>
  9.             <input type="text" name="name">
  10.             <input type="submit" value="submit">
  11.         </form>
  12.     </body>
  13. </html>
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2