<PRE>
 
<?
 
 
include_once("ascii.class.php");        // includes the class's file
 
$text=new ascii("text","dos");          // first parameter is text that will be converted, second is the font style
 
print $text->asciiText;                 // asciiText is variable of converted text
 
 
?>
 
</PRE>
 
 
 |