-4

如何让$row['getmeId']值出现在gotit.php

谢谢

<div id='getme'><a href="gotit.php?id="<?php echo $row['getmeId']; ?>">GetMe</a></div>
4

5 回答 5

1
  1. 转义值以使其对 HTML 安全htmlspecialchars
  2. 把它放在属性值里面(去掉你多余的引号)
  3. $_GET['id']在下一页阅读

这样的:

href="gotit.php?id=<?php echo htmlspecialchars($row['getmeId']); ?>"
于 2013-09-15T08:41:35.403 回答
0

您可以通过以下方式访问此值

echo $_GET['id'];

但请确保对结果进行消毒,因为它可能是邪恶的。

于 2013-09-15T08:41:51.690 回答
0

附加到 URL 的参数可以通过 GET 方法访问,每个参数都可以作为$_GETPHP 中超全局数组的键:

$id = $_GET['id'];
于 2013-09-15T08:42:05.453 回答
0

sendit.php

<a href="gotit.php?id=2345">Send Me</a>

gotit.php

<?php
print $_GET["id"];
?>
于 2013-09-15T08:42:48.787 回答
0

将 $_GET['id'] 的值分配给 gotit.php 中的新变量。

如需更多信息,请遵循帕特里克的建议。

于 2013-09-15T08:43:34.663 回答