使用PHP的表单中的操作

使用PHP的表单中的操作,php,Php,我有个问题。因为我是PHP新手,我不知道这是正确的还是错误的语法。它不起作用了 <form name="edit_client" method="post" action="index3.php?page=del&id=<?php echo $row['id']; ?>&action=edit"> 这没问题 <form name="edit_client" method="post" action="index3.php?page=del&

我有个问题。因为我是PHP新手,我不知道这是正确的还是错误的语法。它不起作用了

<form name="edit_client" method="post" action="index3.php?page=del&id=<?php echo $row['id']; ?>&action=edit">
这没问题

<form name="edit_client" method="post" action="index3.php?page=del&id=<?php echo $row['id']; ?>&action=edit">

您的HTMLAR中缺少了=之后的id是否缺少
=
?它应该是
&id=
您希望它的工作方式是什么?