welcomewiki has just posted in the PHP Forum forum of Wiki Newforum under the title of PHP Functions.
This thread is located at http://www.wikinewforum.com/showthread.php?t=5858
Here is the message that has just been posted:
***************
*Example 1*
The following example will write different first names, but the same last name:
<html>
<body> <?php
function writeMyName($fname)
{
echo $fname . " Refsnes.<br />";
} echo "My name is ";
writeMyName("Kai Jim"); echo "My name is ";
writeMyName("Hege"); echo "My name is ";
writeMyName("Stale");
?> </body>
</html> The output of the code above will be:
My name is Kai Jim Refsnes.
My name is Hege Refsnes.
My name is Stale Refsnes.
***************