Tue Oct 07, 2008 11:46 pm
<?php
function myfunction()
{
// function body
}
<?php
function showme()
{
echo "My name is johan";
}
echo "Welcome to our website ";
showme();
Welcome to our website
My name is johan
<?php
function showme($name)
{
echo "My name is $name";
}
echo "Welcome to our website ";
$username="johan";
showme($username);
showme("Tom");
Welcome to our website
My name is johan
My name is Tom
<?php
function sum($x,$y)
{
$sum=$x+$y;
return $sum;
}
echo " sum of 1 and 4 is : ". sum(1,4) ;
sum of 1 and 4 is : 5
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.