| Current Path : /usr/home/beeson/public_html/michaelbeeson_old/recipes/ |
| Current File : /usr/home/beeson/public_html/michaelbeeson_old/recipes/writeAsHTML.php |
<?php
function writeAsHTML($txt)
// $txt comes from a text area. Change blank lines to </P><P>.
// Put <P> at the beginning and </P> at the end. Echo the result.
{ echo "<P>";
$skip = false;
$current = strtok($txt,"\n");
while(!$current === FALSE )
{ if(trim($current) != "")
{ echo $current;
$skip = false;
}
else if(!$skip)
{ echo "<P></P>";
$skip = true;
}
$current = strtok("\n");
}
echo "</P>";
}
?>