Php 提交按钮不工作

Php 提交按钮不工作,php,html,Php,Html,我使用的是以下表单,但当我按下提交按钮时,它不会导航到其他页面 <form id="form1" name="form1" method="post" action=""> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td colspan="4" align="right"> </td> </tr>

我使用的是以下表单,但当我按下提交按钮时,它不会导航到其他页面

<form id="form1" name="form1" method="post" action="">
  <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td colspan="4" align="right">
 </td>
    </tr>
    <tr>
      <td colspan="4">
        <?php display_msg(); ?></td>
    </tr>
    <tr>
      <th width="26%"  style="padding-left:5px"><a href="?page=<?php echo $page_number; ?>&amp;<?php echo $name; ?>">Name</a></th>
      <th width="40%"><a href="?page=<?php echo $page_number; ?>&amp;<?php echo $email; ?>">Email</a></th>
      <th width="7%">&nbsp;</th>
<td colspan="5" align="center" bgcolor="#FFFFFF"><input type="submit" name="delete" value="Delete"></td>
<?php
// Check if delete button active, start this
if($delete){
echo "<meta http-equiv=\"refresh\" content=\"0;URL=del.php\">";
}
?>

您应该将
if($delete){
更改为
if(isset($\u POST['delete']){

您尚未在表单中定义操作。

没有操作的表单将默认为其自身。从问题的措辞来看,我认为这是问题所在。为什么不将delete.php设置为表单的操作?
<form id="form1" name="form1" method="post" action="">