I have copied this verbatim from a book... (except for the error functions I added per some great suggestions from this site)
<?php
ini_set( 'display_errors', 1 );
error_reporting(E_ALL);
function fontwrap($txt, $size) {
echo "<font size=\"$size\"
face=\"Helvetica, Arial, Sans-Serif\">
$txt</font>";
}
fontwrap("A heading<br>",5);
fontwrap("some body text<br>,3);
fontwrap("some more body text<br>",3);
fontwrap("yet even more body text<br>",3);
?>
I am getting a blank screen... ???
Am I missing a semicolon or something stupid like that?
Thanks,
Scott