Go Back   Wiki NewForum | Latest Entertainment News > Career Forum & Tips > Tech Forum & Tutorial > PHP Forum & Tutorial


PHP Functions


Reply
Views: 3374  
Thread Tools Rate Thread
  #6  
Old 05-04-2009, 05:00 PM
welcomewiki welcomewiki is offline
Member
 
Join Date: Dec 2008
Location: India
Posts: 80,567
PHP Functions - Return values

Functions can also be used to return values.


Example


function add($x,$y)
{
$total = $x + $y;
return $total;
} echo "1 + 16 = " . add(1,16);
?>




The output of the code above will be:
1 + 16 = 17
Reply With Quote
Reply

New topics in PHP Forum & Tutorial





Powered by vBulletin® Version 3.8.10
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
WikiNewForum)