我想将用户的ID添加到表单操作中URL
。
例如view_member.php?id=2
有人可以告诉我在下面的表单操作中格式化PHP代码的正确方法,我可以将id包含为$recptid
$recptid = $_GET['id'];
我试过了
<form action="<?phpview_member.php?id=$recptid?>" method="post">
我希望能够添加链接,但我的格式错误
// insert php code as URL in the form action the a submit is pressed
<form action="<?php?>" method="post">
</form>
提前感谢您提供任何帮助
答案 0 :(得分:1)
试试这个,
<form action="<?php echo "view_member.php?id=".$recptid; ?>" method="post">
我希望它会有所帮助。