This is a discussion on RE: [PHP] How to use ph to set meta tags ? within the PHP General forums, part of the PHP Programming Forums category; You're close but instead of <? mAuthor() ?> try <?php print mAuthor(); ?> That will print the return ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
You're close but instead of <? mAuthor() ?> try
<?php print mAuthor(); ?> That will print the return value of your function - which by example is "Daniel Szasz". -M -----Original Message----- From: Daniel Szasz [mailto:danysz@yahoo.com] Sent: Tuesday, July 15, 2003 3:07 PM To: php-general@lists.php.net Subject: [php] How to use ph to set meta tags ? Hello I wish to create be able to put in the meta tags value from functions. How can be done ? Here is part of the code : <?php function mAuthor() { $Author = "Daniel Szasz"; return $Author; }; ?> <? ?> <HTML> <HEAD> <META http-equiv=Content-Type content="text/html; charset=windows-1252"> <META NAME="mAuthor" CONTENT= <? mAuthor() ?> > </HEAD> </HTML> Thanks a lot for the help Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php |