如何将两个视图表单与一个控制器集成(codeigniter)

时间:2013-03-23 09:38:50

标签: php codeigniter

这是我的视图文件(registration_view.php)

<?php echo form_open("user/registration"); ?>
  <p>
  <label for="first_name">First Name:</label>
  <input type="text" id="first_name" name="first_name" value="<?php echo set_value('first_name'); ?>" />
  </p>
  <p>
  <label for="last_name">Last Name:</label>
  <input type="text" id="last_name" name="last_name" value="<?php echo set_value('last_name'); ?>" />
  </p> 
  <p>
  <label for="email">Email Address:</label>
  <input type="text" id="email" name="email" value="<?php echo set_value('email'); ?>" />
<p>
      <label for="pickup_address">Pick up Address:</label>
      <input type="text" id="pickup_address" name="pickup_address" value="<?php echo set_value('pickup_address'); ?>" />
      </p>
      <p>
      <label for="postal_code1">Postal code:</label>
      <input type="text" id="postal_code1" name="postal_code1" value="<?php echo set_value('postal_code1'); ?>" />
      </p>
      <p>
      <input type="submit" class="greenButton" value="Submit" />
      </p>
 <?php echo form_close(); ?>

我的控制器user.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');


class User extends CI_Controller{

function __construct() {
    parent::__construct();
    $this->load->model('user_model');

    }

    public function index()
    {
    $this->load->view('registration_view');
    }

public function registration()
{
    $this->user_model->add_registration();
}
}

模型(user_model.php)

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

/**
 * 
 */
class User_model extends CI_Model {

    function __construct() 
    {
        parent::__construct();
    }

    public function add_registration()
    {
        $data=array(
'first_name'=>$this->input->post('first_name'),
'last_name'=>$this->input->post('last_name'),
'email'=>($this->input->post('email'),
'pickup_address'=>$this->input->post('pickup_address'),
    'postal_code1'=>$this->input->post('postal_code1'),
  );
  $this->db->insert('user',$data);
    }
    }

这是我的application.it是work.i需要将此视图分开到两个视图。第一个名字,姓氏和电子邮件属于one_view.php,其他视图属于另一个视图(second_view.php)。单击one_view.php文件中的下一个按钮然后打开second_view.php而不转到数据库的值。然后单击second_view.php中的提交按钮,所有值都传递给用户表...请帮我怎么做使用ajax或jquery单独查看文件。

1 个答案:

答案 0 :(得分:0)

是的,可以显示两个视图。

以下是如何操作

从您的控制器显示第一个视图

$this->load->view("one_view",$data);

现在从你的one_view.php中使用。你可以播种第二种观点。

// from inside one_view.php

<div id="g" style="display:none">
<?php

$this->load->view("second_view",$pass_data);

?>
</div>

所以你从一个控制器加载两个视图。现在要显示第二个视图,你可以使用jquery来显示第二个视图。

然后提交您的表格,或者您有。