我尝试在另一个工作正常的页面中获取信息,唯一面临的问题是我无法在数据库中插入我得到的信息,例如:
这是我使用的链接,工作正常。
的index.php
<a href="http://example.com/q.php?url= '. $row['url'] .'&title='. $row['title'] .'" target="_blank">Edit</a>
q.php
$ip_address = $_SERVER['REMOTE_ADDR']; // This is working fine.
$title = $_GET['title'];
mysql_query("insert into test_insert (title,ip) values('$title','$ip_address')")
or die(mysql_error());
$title = $_GET['title']; // Not working
// If i delete this row above and replace with below it works.
$title = 'test'; // This is working and puts (test) in row title
我无法理解为什么我可以在q.php中显示信息:
<?php echo $_GET['title']; ?>
并且无法将其插入数据库,这有什么问题?
欢迎任何帮助。
提前致谢。