Jump to content

passing variables between two functions


xfezz

Recommended Posts

function one($y,$z) {
[b]xyz[/b] = some query from the database;
some other calculations using variables $y and $z;
}

function two($yy,$zz) {
some other calculations using variables $yy and $zz;
newVar = [b]xyz[/b]+ 4;
}

I need to use variable xyz to do a calculation in function two. how do I pass one variable to another function? or would I have to run the same query again in function two?
Link to comment
https://forums.phpfreaks.com/topic/32161-passing-variables-between-two-functions/
Share on other sites

[code][code]
<?

function Add($x, $y) {
$result = $x + $y;
return $result;
}

function Subtract($returnedRESULT) {
echo $returnedRESULT;
}


$returnedRESULT = Add(2, 3);

Subtract($returnedRESULT);

?>
[/code]
I don't know if more than one value can be passed. maybe if you put them in an array? [/code]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.