尝试将简单查询插入我的数据库时,我不断收到服务器错误。我已经看了一个小时,我找不到问题出在哪里。
<form action="<?php echo base_url();?>index.php/frontpage/insert_into_db" method="POST">
<input type = 'text' name='f1' id="searchbar" placeholder="Paste Terminal error here...">
<input type= 'text' name='f2' id="searchbar" placeholder="Paste Terminal solution here...">
<input type='submit' id="search" class="btn btn-primary">
</form>
模型:
function insert_into_db()
{
$f1 = $_POST['f1'];
$f2 = $_POST['f2'];
$this->db->query("INSERT INTO `Errors` VALUES('$f1' , '$f2')");
}
}
控制器:
function insert_into_db()
{
$this->load->model('all');
$this->all->insert_into_db();
$this->load->view('success');
}
提前致谢。