>"Sukanto Kho" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>Hi All,
>
>how to return array var from function ??
>
>I have try that but just can't return it..
>
>here's my code :(function to return any fields name from table)
>
>   function fields($table,$db_name)
>{ $link=$this->database(); // this open the database connection
>     $fields = mysql_list_fields($db_name, $table, $link);
>              $columns = mysql_num_fields($fields);
>              for ($i = 0; $i < $columns; $i++) {
>                 $field[$i] = mysql_field_name($fields, $i);}
>     return $field[];
>     }

Do a print_r($field) instead of return $field to see if the contents is what
you are expecting.

Regards, Torsten Roehr

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

Reply via email to