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*
A simple function that writes my name when it is called:
<html>
<body> <?php
function writeMyName()
{
echo "Kai Jim Refsnes";
} writeMyName();
?> </body>
</html>
***************