Welcome Guest, Not a member yet? Register   Sign In
post method doesn´t work
#1

[eluser]topostangry[/eluser]
Hello i used the codeigniter 2.1.4 version

i have done a <form> with method post but it doesn´t work, i have already been trying it 5 days please help me.with get method works well.

I have test it with the raw code of codeigniter and a simple form with only one input but is the same case,
it doesn´t work.

i have remove the index.php with the .htacces

controllers:

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

class Welcome extends CI_Controller {


public function index()
{
  $this->load->helper('form');
  $this->load->view('welcome_message');
}
}


singUp:

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

class SingUp extends CI_Controller {


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

public function validate(){

  var_dump($_POST);
  var_dump($_GET);
  if($this->input->post('user')){
   echo "ok";
  }else{
   echo "estoy jodidisimo";
  }
}
  
}


views:

welcome_message: with the form
Code:
<!DOCTYPE html>
&lt;html lang="en"&gt;
&lt;head&gt;
&lt;meta charset="utf-8"&gt;
&lt;title&gt;Welcome to CodeIgniter&lt;/title&gt;


<div id="container">
&lt;form action="sinUp/validate" method="post"&gt;
  &lt;input type="text" name="user"&gt;
  &lt;input type="submit" name="sumbit"&gt;
&lt;/form&gt;
</div>

&lt;/body&gt;
&lt;/html&gt;


Messages In This Thread
post method doesn´t work - by El Forum - 10-30-2013, 10:32 AM
post method doesn´t work - by El Forum - 10-30-2013, 10:39 AM
post method doesn´t work - by El Forum - 10-30-2013, 10:47 AM
post method doesn´t work - by El Forum - 10-30-2013, 11:23 AM
post method doesn´t work - by El Forum - 10-30-2013, 11:52 AM
post method doesn´t work - by El Forum - 10-30-2013, 12:15 PM
post method doesn´t work - by El Forum - 10-30-2013, 12:17 PM
post method doesn´t work - by El Forum - 10-31-2013, 09:52 AM
post method doesn´t work - by El Forum - 10-31-2013, 12:42 PM



Theme © iAndrew 2016 - Forum software by © MyBB