<?php
function get($var){
return $var;
}
function set($var, $val){
global $var;
$var = $val;
}
?>
If i use the function in another file say try.php
set($donkey, 5);
echo ($donkey); (does not seems to print out... cos no value
any kind soul out there pls help..