Welcome Guest, Not a member yet? Register   Sign In
[help]School Project Here
#10

[eluser]davidbehler[/eluser]
Don't call me Mr...I'm not that old Wink Nothing bad about teaching this stuff yourself, but maybe you should start with something straight forward..some tutorials on plain functional php and once you mastered those you can continue to OOP and using frameworks like CI.

But anyway, let's fix your problems:

Change your function defintion slightly:
Code:
function check_login($username, $password)
and you gotta decide which way you want to go when running your queries.

Either fully build your query string and then run it:
Code:
$query_str = "SELECT * FROM users WHERE username = '$username' and password = '$password'";
        
$result = $this->db->query($query_str);
or use query bindings:
Code:
$query_str = "SELECT * FROM users WHERE username = ? and password = ?";
        
$result = $this->db->query($query_str, array($username, $shal_password));
or use active record:
Code:
$this->db->where('username', $username);
$this->db->where('password', $password);
$result = $this->db->get('users');


Messages In This Thread
[help]School Project Here - by El Forum - 08-18-2011, 06:56 AM
[help]School Project Here - by El Forum - 08-18-2011, 06:57 AM
[help]School Project Here - by El Forum - 08-18-2011, 07:09 AM
[help]School Project Here - by El Forum - 08-18-2011, 07:10 AM
[help]School Project Here - by El Forum - 08-18-2011, 07:20 AM
[help]School Project Here - by El Forum - 08-18-2011, 07:22 AM
[help]School Project Here - by El Forum - 08-18-2011, 07:31 AM
[help]School Project Here - by El Forum - 08-18-2011, 07:35 AM
[help]School Project Here - by El Forum - 08-18-2011, 07:48 AM
[help]School Project Here - by El Forum - 08-18-2011, 07:55 AM
[help]School Project Here - by El Forum - 08-18-2011, 07:56 AM
[help]School Project Here - by El Forum - 08-19-2011, 05:52 AM
[help]School Project Here - by El Forum - 08-19-2011, 05:59 AM
[help]School Project Here - by El Forum - 08-19-2011, 06:04 AM
[help]School Project Here - by El Forum - 08-19-2011, 06:13 AM
[help]School Project Here - by El Forum - 08-19-2011, 06:23 AM
[help]School Project Here - by El Forum - 08-19-2011, 06:27 AM
[help]School Project Here - by El Forum - 08-19-2011, 06:34 AM
[help]School Project Here - by El Forum - 08-19-2011, 06:36 AM
[help]School Project Here - by El Forum - 08-19-2011, 06:43 AM
[help]School Project Here - by El Forum - 08-19-2011, 06:48 AM
[help]School Project Here - by El Forum - 08-19-2011, 06:52 AM
[help]School Project Here - by El Forum - 08-19-2011, 06:55 AM
[help]School Project Here - by El Forum - 08-19-2011, 06:58 AM
[help]School Project Here - by El Forum - 08-19-2011, 06:58 AM
[help]School Project Here - by El Forum - 08-19-2011, 07:08 AM
[help]School Project Here - by El Forum - 08-19-2011, 07:13 AM
[help]School Project Here - by El Forum - 08-19-2011, 07:18 AM
[help]School Project Here - by El Forum - 08-19-2011, 07:26 AM
[help]School Project Here - by El Forum - 08-19-2011, 07:35 AM
[help]School Project Here - by El Forum - 08-19-2011, 07:38 AM
[help]School Project Here - by El Forum - 08-19-2011, 07:40 AM
[help]School Project Here - by El Forum - 08-19-2011, 07:42 AM
[help]School Project Here - by El Forum - 08-19-2011, 07:45 AM
[help]School Project Here - by El Forum - 08-19-2011, 07:56 AM
[help]School Project Here - by El Forum - 08-19-2011, 07:59 AM
[help]School Project Here - by El Forum - 08-19-2011, 08:04 AM
[help]School Project Here - by El Forum - 08-19-2011, 08:14 AM
[help]School Project Here - by El Forum - 08-19-2011, 08:20 AM
[help]School Project Here - by El Forum - 08-19-2011, 08:33 AM
[help]School Project Here - by El Forum - 08-19-2011, 08:36 AM



Theme © iAndrew 2016 - Forum software by © MyBB