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 2*
The following function has two parameters:
<html>
<body> <?php
function writeMyName($fname,$punctuation)
{
echo $fname . " Refsnes" . $punctuation . "<br />";
} echo "My name is ";
writeMyName("Kai Jim","."); echo "My name is ";
writeMyName("Hege","!"); echo "My name is ";
writeMyName("Ståle","...");
?> </body>
</html>
The output of the code above will be:
My name is Kai Jim Refsnes.
My name is Hege Refsnes!
My name is Ståle Refsnes...
***************