Well, there is a difference between
> function html_head() {
> $html = "<html....................................";
>
> return $html;
> }
and
> function header() {
> <?
> <html
> <head
> <title........
> ?>
> }
The first function you need to call using <? echo header(); ?> to see the output
THe second function is not a real function because it has no return
statement. In german you call this "Prozedur". Don't know if it's the
same as procedure in english. But you will call this piece <?
header(); ?> to see some output.
Dirk
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php