如何让$row['getmeId']
值出现在gotit.php
?
谢谢
<div id='getme'><a href="gotit.php?id="<?php echo $row['getmeId']; ?>">GetMe</a></div>
如何让$row['getmeId']
值出现在gotit.php
?
谢谢
<div id='getme'><a href="gotit.php?id="<?php echo $row['getmeId']; ?>">GetMe</a></div>
htmlspecialchars
$_GET['id']
在下一页阅读这样的:
href="gotit.php?id=<?php echo htmlspecialchars($row['getmeId']); ?>"
您可以通过以下方式访问此值
echo $_GET['id'];
但请确保对结果进行消毒,因为它可能是邪恶的。
附加到 URL 的参数可以通过 GET 方法访问,每个参数都可以作为$_GET
PHP 中超全局数组的键:
$id = $_GET['id'];
sendit.php
<a href="gotit.php?id=2345">Send Me</a>
gotit.php
<?php
print $_GET["id"];
?>
将 $_GET['id'] 的值分配给 gotit.php 中的新变量。
如需更多信息,请遵循帕特里克的建议。