Sindbad~EG File Manager

Current Path : /usr/home/beeson/public_html/michaelbeeson/recipes/
Upload File :
Current File : /usr/home/beeson/public_html/michaelbeeson/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>";
}
   
			  
		
   
   
?>

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists