dongzan7016 2016-06-21 22:17
浏览 81

如何使用php从输入框中获取多个值

This is the output of my code Output

Every item has its own item number. I will be entering randomly a value for 3 items, after doing so I will click on the add button and will be redirected to a confirmation page. How will I get the values with its corresponding item?

Thanks in advance for the answers :)

  • 写回答

2条回答 默认 最新

  • douyun3631 2016-06-21 22:27
    关注

    Use input name as array.

    <input type="text" name="price[]" />
    <input type="text" name="price[]" />
    <input type="text" name="price[]" />
    <input type="text" name="price[]" />
    <input type="text" name="price[]" />
    

    Get values like this

    $price = $_POST['price'];
    foreach($price as $key => $val ) {
      echo $val;
      echo "<br>";
    }
    
    评论
  • dquv73115 2016-06-21 22:34
    关注

    You can bind or keep the text box name same as your database row ID so when you submit and in the target page you can redo the select and update the field in the database like

    <input type="text" name="$id" />
    

    in the target page use Select Query looping and give

    Update table_name set field_name=$_REQUEST[$id] where id=$id
    
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 VB6.0获取路径及文件信息问题
  • ¥15 mbed库rsa算法段错误
  • ¥15 SG-cyclic模式Axi-Dma,如何实时更新缓存区内数据
  • ¥15 有人帮看看这个问题的嘛
  • ¥15 Mysql 一张表同时多人查询和插入怎么防止死锁
  • ¥20 centos6.7 安装libevent库.总是报错,如何解决?
  • ¥15 电脑买回,学校的有线网络总掉。
  • ¥20 关于普洛菲斯触摸屏与AB连接地址问题
  • ¥15 syri可视化不显示插入缺失
  • ¥30 运行软件卡死查看系统日志分析不出来
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部