Source code for:
printbreak.php
<HTML>
<HEAD>
<TITLE>Print Routine</TITLE>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</HEAD>
<BODY bgcolor="#FFFFFF" text="#000000">
<?php
/*
=========================================
prtBR = Function to print a line of text and move to a NEW line
prtBR ("the arguement is in double quotes for variable \$text");
==========================================
*/
FUNCTION prtBR($text){
PRINT ("$text <br> \n");
}
// prtBR("This is printing routine.");
?>
</BODY>
</HTML>
|