<? /* example */ include('morse.class.php'); $new= new Morse(); $text="This is my 1st morse"; $new->ToMorse($text); echo MORSE."<br>"; $new->ToText(MORSE); echo TEXT; ?>