小编典典

单击按钮执行SQL查询

sql

nw_check.php

<?php
  $con = mysql_connect("localhost","root","12345");
  if (!$con)
  {
    die('Could not connect: ' . mysql_error());
  }
?>

 <html>
 <body>
    <form method="POST" action="nw_check_exec.php">
        <input type="button" name="nw_update" value="NW_Update"/>
    </form>
</body>
</html>

nw_check_exec.php

<?php
    if(isset($_POST['nw_update'])){
        echo("You clicked button one!");
        //and then execute a sql query here
    }
    else {
    echo" dhur";
    }
?>

但是由于某些原因,nw_check_exec.php中的回显未执行。请你能帮忙。


阅读 174

收藏
2021-04-22

共1个答案

小编典典

我认为这是因为输入类型是“按钮”,应该是提交:

<input type="submit" name="nw_update" value="NW_Update"/>
2021-04-22