如何在PHP中将数据动态添加到数组中

时间:2013-09-05 14:11:02

标签: php arrays dynamic for-loop

我想使用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);
   }
  ?>`

有没有人有更好的方法?

1 个答案:

答案 0 :(得分:0)

我更喜欢在声明后创建索引:

$test = array();
$test['a'] = 'value';
$test['b'] = 'value';
$test['c'] = 'value';