Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of juergen kaucher  >  morse  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: example for morse.class.php
Class: morse
Short class for encoding or decoding morse signs
Author: By
Last change:
Date: 2002-09-25 15:21
Size: 178 bytes
 

Contents

Class file image Download
<?
/* 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;
?>