Quick question, I am making a class for processing all my db functions, this way it make all my errors uniform and simple...it really helps in debugging
well i have a function query that is called and like it says it processes a query the problem is the class is seperate from the content so if i want lets say all of the rows in a table i have to do a while loop. But I want to put all of the rows into one multideminsion array.
So what can I do to add all the rows to ONE array.
can I just do something along these lines?
$this->data = array()
while(...)
{
$this->outout = array_push($this->data, $this->row);
}
can i use array_push on other arrays?