For anyone who cares, I figured this one out myself.
If you have an "html_header()" just sitting
around out in the open, undefined . . . then
you are just asking for trouble.
"html_header()" needs to be defined somewhere
as a function in the following format;
function html_header() {
<?
<head>
<title>What Title</title>
</head>
<body>
?>
}
After that, you can call the function without
problem, so long as it has been defined before
it gets called.
Simple stuff, sure, but not when you don't
know what you are supposed to be looking for.
-David
|