Peter Lauri wrote:

http://th.php.net/manual/en/function.return.php


-----Original Message-----
From: Jason Gerfen [mailto:[EMAIL PROTECTED] Sent: Saturday, February 25, 2006 12:29 AM
To: Peter Lauri
Cc: php-general@lists.php.net
Subject: Re: [PHP] $_POST to function?

Peter Lauri wrote:

Is the function actually returning anything? Aren't you just "echoing" the
content of the $_POST?

-----Original Message-----
From: Jason Gerfen [mailto:[EMAIL PROTECTED] Sent: Friday, February 24, 2006 10:27 PM
To: PHP General (E-mail)
Subject: [PHP] $_POST to function?

I am not sure why this is not working. Aren't $_POST vars superglobals? I am trying to pass the $_POST array as an argument to a function and nothing is being returned. Any help is appreciated.

return global_template( 3, $_POST, count( $_POST ), $message );

function global_template( $cmd, $args, $num, $message ) {
echo "<pre>"; print_r( $args ); echo "</pre>";
}



Well as I pass $_POST to the global_template function I am not seeing anything in the $args array in the global_template function. And to this point I still have not figured out why.

Figured it out, typo.  I must have fat fingers today.  Thanks everyone.

--
Jason Gerfen

"When asked what love is:
Love is the Jager talking."
~Craig Baldo

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

Reply via email to