我想用codeigniter、php和mysql制作一个简单的应用程序,通过表单将数据收集到mysql数据库中。下面是我的代码-对于form1.php,我使用-
<body>
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-4">
<div class="login-panel panel panel-success">
<div class="panel-heading">
<h3 class="panel-title">Form</h3>
</div>
<div class="panel-body">
<form role="form" method="post" action="<?php echo base_url('/form/add_user'); ?>">
Name:<br>
<input class="form-control" placeholder="Name" type="text" name="name"><br>
Age: <br>
<input class="form-control" placeholder="Age" type="number" name="age"><br>
Gender:<br>
<input type="radio" name="gender" value="male">Male<br>
<input type="radio" name="gender" value="female">Female<br><br>
State:<br>
<select name="state">
<option value="maharashtra">Maharashtra</option>
<option value="west bengal">West Bengal</option>
<option value="kerela">Kerela</option>
<option value="bihar">Bihar</option>
</select><br>
<br>
<input class="btn btn-lg btn-success btn-block" type="submit" value="Submit" name="submit" >
</form>
</div>
</div>
</div>
</div>
</div>
</body>
对于控制器-
class Form extends CI_Controller {
public function __construct(){
parent::__construct();
$this->load->helper('url');
$this->load->model('user_model');
}
public function index()
{
$this->load->view("form1.php");
}
public function add_user(){
$user=array(
'name'=>$this->input->post('name'),
'age'=>$this->input->post('age'),
'gender'=>$this->input->post('gender'),
'state'=>$this->input->post('state')
);
print_r($user);
$this->user_model->add_user($user);
redirect ('form');
用户模型看起来像-
<?php
class User_model extends CI_model{
public function add_user($user){
$this->db->insert('user', $user);
}
}
?>
现在我把我的表格http://127.0.0.1/samplesurvey/ 在浏览器中。我正在使用 WAMP
我的应用程序名为samplesurvey。
但当我提交时,我得到了一个错误:
在此服务器上找不到请求的url/samplesurvey/form/add\u用户。
我已经编辑了 .htaccess
文件和apache模块,但它不工作。
1条答案
按热度按时间pnwntuvh1#
这是个好习惯
site_url
而不是base_url
定义窗体的操作url时。错
.htaccess
可以的问题,所以暂时删除.htaccess
文件。一定要进去
config.php
```$config['base_url'] = 'http://127.0.0.1/samplesurvey';
$config['index_page'] = 'index.php';