我是Codeigniter的新手。如何使用codeigniter将表单值存储在mysql中,任何人都可以帮助我...有没有链接可以提供.... 在此先感谢。
答案 0 :(得分:14)
让我以简单的方式澄清你......
这将是你的控制器
class Site extends CI_Controller
{
function index()
{
$this->load->view('form.php');// loading form view
}
function insert_to_db()
{
$this->load->model('site_model');
$this->site_model->insert_to_db();
$this->load->view('success');//loading success view
}
}
这将是您的观点。创建视图请转到autoload.php和autoload url helper和数据库类。 在你的config.php中设置config ['base_url'] =“你网站的路径”; form.php的
<form action="<?php echo base_url();?>index.php/site/insert_into_db" method="post">
Field 1 = <input type = 'text' name='f1'>
Field 2 = <input type = 'text' name='f2'>
Field 3 = <input type = 'text' name='f3'>
<input type='submit'>
</form>
success.php
<b>Your data has been inserted!!!</b>
在你的模型中,你需要拉取表格的数据并以这种方式插入数据库
site_model.php
class Site_model extends CI_Model
{
function insert_into_db()
{
$f1 = $_POST['f1'];
$f2 = $_POST['f2'];
$f3 = $_POST['f3'];
$this->db->query("INSERT INTO tbl_name VALUES('$f1','$f2','$f3')");
}
}
在这种情况下,您的数据库有三个字段...根据您的要求修改查询
答案 1 :(得分:1)
CodeIgniter手册非常有用。
答案 2 :(得分:0)
浏览Database Class。它具有用于操作数据库的所有功能。如果您真的想学习codeigniter,请花几个小时浏览User Guide。