Can you give a better example? My test:
<?
include 'functions.php';
$foo="We contacted you because the laptop hard ";
$bar="disk drive appears to be failing. After about 15 minutes ";
$baz="or so of use, the drive begins making a repetitive clicking noise ";
$garply="and the operating system freezes; the only method of regaining control is to cycle the power.";
$fooed=substr($foo,0,20);
$barred=substr($bar,0,20);
$bazzed=substr($baz,0,20);
$garplyed=substr($garply,0,20);
echo "<font=\"courier\">";
echo $fooed;
lines(2);
echo $barred;
lines(2);
echo $bazzed;
lines(2);
echo $garplyed;
?>
lines() is just a local function for HTML breaks... 😉
Every line was 20 characters...