如何从上一页获取ID值并将其插入下一页

时间:2016-04-03 06:40:12

标签: php

我尝试将定位器添加到帐户持有人 AddLocator.php 上的图片是帐户支架即可。 链接添加定位器会将用户重定向到 AddLocatorProcess.php 。我需要的是获取帐户持有人 ID ,将其作为外键插入新创建的定位器中。 我该怎么做?

AddLocator.php enter image description here

AddLocatorProcess.php enter image description here

1 个答案:

答案 0 :(得分:0)

制作Add Locator href,使其包含URL中的ID,如下所示:

<a href="AddLocatorProcess.php?id=<ID_TO_BE_SENT_ON_NEXT_PAGE>">Add Locator</a>

然后在AddLocatorProcess.php页面中,您可以获得该ID:

<?php echo $_GET['id']; //this will give the id of clicked locator to be used as foreign key?>