Beauford 2002 wrote:

Hi,

I have form that a user would input information and that info is sent to
a function, but I need to be able to return a result of this function
and is where I am having a problem.
For example:

testfunction($var1, $var2, $var3, $var4); //the form fills these
values.

echo $meat;

function testfunction($a, $b, $c, $d) {

The $meat of the function goes here;

Now I need to return the result of $meat;

return $meat;
}

$return_value = testfunction (....

echo $return_value;

HTH
Chris



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

Reply via email to