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