|
[code=PHP][/code]为什么我提交的地址是login2,但是在login收到此参数。怎么会这样
<form action="<?php site_url('Member/login2')?>" method="post">
public function login()
{
$this->output->enable_profiler(TRUE);
$this->load->helper('url');
$this->load->model('Model_login');
$user = $this->input->post('number');
$pass = $this->input->post('pass');
echo $user;
$this->load->view('login');
}
|
|