Welcome Guest, Not a member yet? Register   Sign In
very newbie question
#1

[eluser]Unknown[/eluser]
hey,
im new to php and codeigniter and i want to create something with ci.
here is my question, how can i create like this query

Code:
SELECT username,password FROM users WHERE username=$foo AND password=$bar

with codeigniter activerecord ? like this ?

Code:
$this->db->select('username,password');
$this->db->from('users');
$this->db->where('username', $foo);
$this->db->where('password', $bar);
$query = $this->db->get();

thanx form help.
#2

[eluser]louis w[/eluser]
Looks right to me. What happens?
#3

[eluser]pickledegg2[/eluser]
looks right to me too.
#4

[eluser]exodus7[/eluser]
you can also turn on the profiler by typing
Code:
$this->output->enable_profiler(TRUE);
which will allow you to view the queries that were generated.
#5

[eluser]pickledegg2[/eluser]
Quote:$this->output->enable_profiler(TRUE);
Every days a schoolday, thanks for the tip Wink




Theme © iAndrew 2016 - Forum software by © MyBB