Home > Backend Development > PHP Tutorial > php处置批量提交

php处置批量提交

WBOY
Release: 2016-06-13 10:32:25
Original
780 people have browsed it

php处理批量提交

HTML code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->                
Copy after login

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->    $buynum = isset($buynum) && is_numeric($buynum) ? $buynum : 1;    $id =empty($id)? "" : intval($id);    $buynum = ($buynum GetOne("SELECT id,channel,title FROM #@__archives WHERE id='$id'");    if(!is_array($rs))    {        ShowMsg("该商品已不存在!","-1");        exit();    }    $cts = GetChannelTable($rs['channel']);    $rows = $dsql->GetOne("SELECT aid as id,trueprice as price,units FROM `$cts[addtable]` WHERE aid='$id'");    if(!is_array($rows))    {        ShowMsg("该商品已不存在!","-1");        exit();    }    $rows['buynum'] = $buynum;    $rows['title']     = $rs['title'];    $cart->addItem($id, $rows);    ShowMsg("已添加加到购物车,<a href="car.php">查看购物车</a>","car.php");    exit();
Copy after login


我需要如何修改才能将id提交的内容到php?

------解决方案--------------------
探讨
因为id=的值不是固定的,所以这个好像一点用都没有吧?
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template