<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
          <?=$showkey?>
    <tr class="header"> 
      <td width="16%"> </td>
      <td><input type="submit" name="addnews" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
    </tr>
  </table>
  </form>
        </td>
  </tr>
</table>
<?php
require(ECMS_PATH.'e/data/template/cp_2.php');
?>

解决方案 »

  1.   

    楼上正解,在form中加一个target="_blank"属性<form target="_blank">
      

  2.   

    表单,需要这样用
    <form name=form id=form method=get/post action=target.php target=_blank>
    <input type=text id=text name=text value="">
    <input type=submit>
    </form>
      

  3.   


    <form method="post或者get" target="_blank" action="要提交的URL">
    <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
      <?=$showkey?>
      <tr class="header">  
      <td width="16%"> </td>
      <td><input type="submit" name="addnews" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
      </tr>
      </table>
      </form>
      </td>
      </tr>
    </table>
    <?php
    require(ECMS_PATH.'e/data/template/cp_2.php');
    ?>