Gustav Wiberg wrote:
I think I have done this before but I can't remember how I did...
I want to return one variable ($htmlReport) and one array from a function
I'd like to like this:
return $htmlReport, $res;
but get the error: Parse error: syntax error, unexpected ',' in C:\www\test\timeweb\classes\reports.php on line 2745
Yeah, that's not valid PHP. Return it as as array...
return array($htmlReport, $res);
-Stut
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php