標題:
PHP 基礎語法(三) 練習
[打印本頁]
作者:
陳育霖
時間:
2023-9-9 02:02
標題:
PHP 基礎語法(三) 練習
請製作如下圖的PHP網頁
陣列長度:
$length = count($myArray);
複製代碼
[attach]16432[/attach]
[attach]16433[/attach]
本帖隱藏的內容需要回復才可以瀏覽
作者:
蔡幸融
時間:
2023-9-9 15:14
<!DOCTYPE html>
<html>
<body>
<h1>學生成績</h1>
<?php
$array = [ "Alice" => 85, "Bob" => 92, "Charlie" => 78, "David" => 88, "Eva" => 95 ];
if(isset($_POST["name"]) && isset($_POST["score"]))
{
$student=$_POST["name"];
$newscore=$_POST["score"];
$array[$student]=$newscore;
}
echo '<table border=1>';
echo '<tr><th>姓名</th><th>分數</th></tr>';
foreach($array as $name=>$score)
{
echo '<tr><td>'.$name.'</td><td>'.$score.'</td></tr>';
}
echo'</table>'
?>
<h1>更新學生成績</h1>
<form method="post" action="practice3.php">
<label>姓名: </label>
<input type="text" name="name"><br>
<label>成績: </label>
<input type="nuber" name="score"><br>
<input type="submit">
</form>
</body>
</html>
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2