Board logo

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

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

請製作如下圖的PHP網頁
陣列長度:
  1. $length = count($myArray);
複製代碼
[attach]16432[/attach]
[attach]16433[/attach]
本帖隱藏的內容需要回復才可以瀏覽

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

  1. <!DOCTYPE html>
  2. <html>
  3.     <body>
  4.         <h1>學生成績</h1>
  5.         <?php
  6.             $array = [ "Alice" => 85, "Bob" => 92, "Charlie" => 78, "David" => 88, "Eva" => 95 ];
  7.             if(isset($_POST["name"]) && isset($_POST["score"]))
  8.             {
  9.                 $student=$_POST["name"];
  10.                 $newscore=$_POST["score"];
  11.                 $array[$student]=$newscore;
  12.             }
  13.             echo '<table border=1>';
  14.             echo '<tr><th>姓名</th><th>分數</th></tr>';
  15.             foreach($array as $name=>$score)
  16.             {
  17.                 echo '<tr><td>'.$name.'</td><td>'.$score.'</td></tr>';
  18.             }
  19.             echo'</table>'
  20.         ?>
  21.         <h1>更新學生成績</h1>
  22.         <form method="post" action="practice3.php">
  23.             <label>姓名: </label>
  24.             <input type="text" name="name"><br>
  25.             <label>成績: </label>
  26.             <input type="nuber" name="score"><br>
  27.             <input type="submit">
  28.         </form>
  29.     </body>
  30. </html>
複製代碼





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