* Thus wrote Edward Peloke:
> it is strange...
> 
> if I do this:
> 
> function nextRecord(){
> $this->[EMAIL PROTECTED]($this->queryID);

Don't use the @ sign, it is bad practice.

> $test=$this->record;
> echo $test;

I'm not sure what this is for.

> 
> $status=is_array($this->record);
> return ($status);
> }
> 
> "Array" is echoed for $test so I know it is an array but if I add this:
> 
> shuffle($test);

Where in the world did $test get set from?

if $test is expected to be the value of $this->record, then all
your going to be doing is shuffling the order of the columns.


Curt
-- 
First, let me assure you that this is not one of those shady pyramid schemes
you've been hearing about.  No, sir.  Our model is the trapezoid!

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to