我已成功将用户定向到包含表格信息的页面。使用此代码:
<?php foreach ($customers as $row) : ?>
<td onclick="window.location='view_customer.php?customer_id=<?php echo $row['id'] ?>&operation=edit';">
</td>
<?php endforeach; ?>
&#13;
现在他们在view_cutomer.php上。下一步是将用户重定向到另一个也包含其信息的页面(相同的信息)。使用按钮。下一页是paint.php。我尝试过这段代码,但似乎没有用。顺便说一下,下一页不再有表格了。
<button onclick="window.location='paint.php?customer_id=<?php echo $row['id'] ?>&operation=edit';" class="rbutton">Paint</button>
&#13;
如何使用ID将用户重定向到特定页面?
答案 0 :(得分:1)
在第二页上你想要的id在get数组中(来自url)
<button onclick="window.location='paint.php?customer_id=<?php echo $_GET['customer_id'] ?>&operation=edit';" class="rbutton">Paint</button>