<?
require ("linker.class.php");
$text = 'Hello, my name is brett, my email is estrabd@mvdev.com , and my url is http://www.mvdev.com/index.html , and I also have an ftp site at ftp://ftp.ftpptf.com .';
$linkObj = new Linker();
echo '<strong>Original text:</strong><br>';
echo $text.'<br><br>';
echo '<strong>Linked text:</strong><br>';
echo $linkObj->format($text).'<br><br>';
echo '<strong>Old text (available as an internal class variable):</strong><br>';
echo $linkObj->getOldStr();
?>
|