javascript 表单提交传值 php
<formname="form1"method="post"想将结果传到B.php中,想问一下,在B.php中怎么写代码啊,本人菜,请多包涵,先谢了哈action=...
<form name="form1" method="post" 想将结果传到B.php中,想问一下,在B.php中怎么写代码啊,本人菜,请多包涵,先谢了哈 action="shop_sort_link.php"> <table> <?php while($row = mysql_fetch_array($sql)) { ?> <tr> <td height="47"> <?php echo $row["ns_id"]; ?></td> <td height="47"> <?php echo $row["ns_name"]; ?></td> <td height="47"><input name="submit1" type="submit" value="我要看看" onclick="dosubmit(<?php echo $row["ns_id"]; ?>)"></td> </tr> <?php }?> </table> <input type="hidden" name="ORDERCODE" value=""> <script language="javascript"> function dosubmit(value1){ document.form1.ORDERCODE.value = value1; } </script> </form>
展开
4个回答
展开全部
要想在 b.php取值 提交地址改为b.php然后在b.php中<?php
print_r($_POST);
?>就知道了,不多说了
print_r($_POST);
?>就知道了,不多说了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看你的程序应该是只要传ORDERCODE这个组件的值,那把action改为B.php,在B.php程序中写一行$ORDERCODE= $_POST["ORDERCODE"];就行了。 这个$ORDERCODE变量取的就是post过来的值,echo确认一下就好。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
B.php中应该包含一下几部分。
第一:数据库连接文件,conn.php.
第二:写出insert语句,如
mysql_query("INSERT INTO `news_list` (`id`, `mid`, `title`, `subtitle`, `titleattr`, `links`, `author`, `img`, `imgalt`, `url`, `date`)
VALUES (NULL, '$mid', '$_POST[title]', '$_POST[subtitle]', '$_POST[titleattr]', '$_POST[links]', '$_POST[author]', '$_POST[img]', '$_POST[imgalt]','', '".mktime()."')");
第一:数据库连接文件,conn.php.
第二:写出insert语句,如
mysql_query("INSERT INTO `news_list` (`id`, `mid`, `title`, `subtitle`, `titleattr`, `links`, `author`, `img`, `imgalt`, `url`, `date`)
VALUES (NULL, '$mid', '$_POST[title]', '$_POST[subtitle]', '$_POST[titleattr]', '$_POST[links]', '$_POST[author]', '$_POST[img]', '$_POST[imgalt]','', '".mktime()."')");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询