<?
 function showfunction()
 {
  echo "Show Function<br>\n";
 }

 function returnfunction()
 {
  return "showfunction<br>\n";
 }

 showfunction();

 echo returnfunction();
?>

Chris Lee
Mediawaveonline.com
"Augusto Cesar Castoldi" <[EMAIL PROTECTED]> wrote in message
Pine.GSO.4.10.10101101404540.1072-100000@juno">news:Pine.GSO.4.10.10101101404540.1072-100000@juno...
> How do I use a function?
>
> I did:
>
> function ShowMessage {
>   echo "Show message...\n";
> }
>
> How can I call the function now?
>
> thanks,
>
> Augusto Cesar Castoldi
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to