Home >Backend Development >PHP Tutorial >php 有a页面向b页面传值 b页面接受并存入数据库问题

php 有a页面向b页面传值 b页面接受并存入数据库问题

WBOY
WBOYOriginal
2016-06-23 14:18:161223browse

a页面有1、2、3、4、5个按钮,每个按钮都有相应链接,点击每个按钮向b页面传值,传id、name、url等,b页面负责向数据库添加记录,记录内容是id name url,现在问题是添加到数据库相应类型,但是url加不到数据库,而且b.php页面跳转一直是第一个按钮链接地址请各位帮忙解决

代码
a.php
$path=$_GET[path];
$url="http://bj.tv.wo.com.cn";
$result=mysql_query("select * from new where path='3' order by id desc limit 0,1");
while($row=mysql_fetch_array($result)){
?>
 & name= & url =">php 有a页面向b页面传值 b页面接受并存入数据库问题
}
?>

b.php
include("conn.php");
$id=$_GET[id];
$type=$_GET[type];
$showtime=date("Y-m-d");
$url=$_GET[url];
$resultc=mysql_query("insert into total_counter (time,type,url) values ('$showtime','$type','$url')");
$result=mysql_query("select * from new where id=$id"); 
while($row=mysql_fetch_array($result)){
?>
<script> <br /> location="相应按钮链接地址(传过来的是按钮几链到按钮几的url地址)"; <br /> </script>
 }
?>


回复讨论(解决方案)

你的源代码就是这样的么???我没看到变化的url啊 

url带有斜线,需要转义后再插入数据库

问题已解决了

解决了 就结贴给分吧.   你这问题应该是小问题

Statement:
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