我想使用HTML和PHP动态地向数组添加新数据
这是我的代码:
<form action="" method="">
<input type="text" name="name">
<input type="submit" name="send">
</form>
<?php
if(isset($_POST['send']))
{
$name = $_POST['name'];
for($=1;$i<2;$++)
{
$name = array($name);
$names = array_push($names,$name);
}
print_r($names);
}
?>`
有没有人有更好的方法?
答案 0 :(得分:0)
我更喜欢在声明后创建索引:
$test = array();
$test['a'] = 'value';
$test['b'] = 'value';
$test['c'] = 'value';