View Single Post
Old 07-20-2009, 06:15 PM   #14 (permalink)
Village Idiot
Wizard
Top Contributor 
 
Village Idiot's Avatar
 
Join Date: Sep 2007
Posts: 1,299
Thanks: 17
Village Idiot is on a distinguished road
Default

Quote:
Originally Posted by codefreek View Post
A:

PHP Code:
function my_function($var1,$var2,$var3){
// Place to enter code here.
$var=$var1+$var2+$var3;
return 
$var;
}
$my_val=my_function(5,6,8);
echo 
"The return value= $my_val";
// The above line will print the sum of the three variables. 
Q: Can anything be stored in a cookie ?
No. HTTP limits the cookie header to 4kb.

At what version did PHP add respectable OOP functionality.
__________________

Village Idiot is offline  
Reply With Quote