PHP 新手,大学时我得到了一个基本任务的骨架:我必须创建一个包含 3 个人及其年龄的关联数组,然后我必须循环该数组(foreach)并为每个键创建一个 HTML 锚/链接。每个锚点/链接都会影响if (isset($_GET['name'])
这是关联数组 ($age)
$age['Atticus'] ="2100";
$age['McDunna'] ="96";
$age['Oberon'] ="13";
我可以在这个“循环”中更改/添加什么,以便它们影响if (isset($_GET['name'])
foreach ($age as $key => $value) {
echo "<a href=\"GET\">'$key'</a>";
echo "<br>";
我还考虑让数组从每个键创建一个表单,以便我可以使用表单方法 =get但我不太确定这是否可能。
这是我的第一个问题,所以如果某些部分令人困惑,我很抱歉,我很乐意澄清一些事情。如果更容易,我可以提供骨架代码:
<?php
// TODO make an assoc array with 3 people and their age.;
if( isset( $_GET['name']) ){
// TODO create a text with the name and age;
$infoText= "$age";
$infoText = NULL;
}else{
// TODO create generic text.;
}
?>
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<header>
<?php
// TODO "Loop" the $age array. and for every key create an HTML anchor/link.;
foreach ($age as $key => $value) {
echo "<a href=\"GET\">'$key'</a>";
echo "<br>";
}
?>
</header>
<h3><?php // TODO display the infoText ?></h3>
</body>