Home > Backend Development > PHP Tutorial > php两个表单值传递的有关问题,求大神指教

php两个表单值传递的有关问题,求大神指教

WBOY
Release: 2016-06-13 12:18:59
Original
831 people have browsed it

php两个表单值传递的问题,求大神指教
我在一个页面写了两个表单

<br /><form enctype="multipart/form-data" method="post" name="upform"><br />      上传图片:<br/><br />      </td><br />      <td><br />      <input name="upfile" type="file"><br />      <input type="submit" value="上传"><br><br />      允许上传的文件类型为:<?=implode(', ',$uptypes)?><br />      </td><br />    </form><br />
Copy after login


在上传完文件后,我要在另一表单填写其他数据并写入数据库中,但我就是获取不到第一个表单上传的图片名,该怎么做呢
------解决思路----------------------
考虑写成一个表单
------解决思路----------------------
第二个表单中没有文件名,当然就取不到
分两次体就的话,要在服务端做缓存
------解决思路----------------------
第二个表单没有  这个文件上传框,当然就没有值。你用个变量存起来再插入不就行了。

$f_name = $_FILES[upfile][name];

 if(isset($_POST[product])){
 
    $db->query("INSERT INTO `p_product` (`pid`,`locate`, `name` " .
            "VALUES (NULL, '$f_name', '$_POST[name]');
    $db->Get_admin_msg("img.php","添加成功");

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