Welcome Guest, Not a member yet? Register   Sign In
using jquery ajax with codeigniter
#14

[eluser]charly71[/eluser]
Try to use Input class library (http://ellislab.com/codeigniter/user-gui...input.html) and then get your username value directly in the model:

Code:
<?php
class Login extends CI_Model {


function login_check()
{
  $username = $this->input->post('username');
  $this -> db -> select('id, username');
  $this -> db -> from('users');
  $this -> db -> where('username = ' . "'" . $username . "'");
  $this -> db -> limit(1);

  $query = $this -> db -> get();

  if($query -> num_rows() >= 1)
  {
   return true;
  } else
   return false;
}
}

?>

Bye


Messages In This Thread
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 06:35 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 06:51 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 06:53 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 06:57 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 06:57 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 06:59 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 07:01 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 07:12 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 07:13 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 07:14 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 07:17 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 07:20 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 07:25 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 07:30 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 07:32 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 07:35 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 07:42 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 07:57 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 08:13 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 08:46 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 08:59 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 09:13 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 09:39 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 10:58 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 11:15 AM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 01:26 PM
using jquery ajax with codeigniter - by El Forum - 11-15-2012, 02:18 PM



Theme © iAndrew 2016 - Forum software by © MyBB