我要當按下我的頁面上的按鈕,它運行在數據庫需要做一個查詢時按下按鈕PHP
查看
<form method="POST" action="evcccontroller/query">
<input type="submit" name="nw_update" value="NW_Update"/>
</form>
控制器
查詢public function query()
{
// load the index view
$this->load->view('querycheck');
}
querycheck.php
<?php
if(isset($_POST['nw_update']))
{
echo("You clicked button one!");
//and then execute a sql query here
}
else
{
echo" dhur";
}
一個錯誤時遇到
您剛纔的請求是不允許的行動。
嘗試行動= 「;/index.php的/ evcccontroller /查詢」> –
Saty