On Friday 01 November 2002 22:04, Steve Jackson wrote:

Please use a descriptive subject!

> I have called it in another page by doing
> get_shipping($shipping)
>
> And then
>
> Echo "test $shipping";

$returned_variable = get_shipping($shipping);
echo $returned_variable;

Or you can use the returned value directly:

echo get_shipping($shipping);


-- 
Jason Wong -> Gremlins Associates -> www.gremlins.com.hk
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *

/*
The computing field is always in need of new cliches.
                -- Alan Perlis
*/


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

Reply via email to