使用php在数组中填充数据

时间:2018-02-01 20:03:36

标签: javascript php arrays

我的想法是使用select元素获取有关用户的完整地址,实际上我有一个包含所有地址$all = (array)$this->_user->getAddressCollection();的变量,如果我只创建一个小脚本来获取响应,则响应看起来如下所示:

enter image description here

我在foreach中使用该变量来获取地址的id和地址名称:

 <select class="addrs">
    <?
      foreach($all as $addre => $info):
     ?>
      <option value="<?php echo $info->getIdCustomerAddress(); ?>">
          <?php echo $info->getAddress1() . ' ' .  $info->getAddress2() . ' - ' .
                                $info->getAddress3(); ?>
      </option>
     <?php endforeach; ?>
</select>`

从这里开始,当用户选择其中一个地址显示在选择

上时,我不知道如何填写表格

0 个答案:

没有答案