I'm showing my true newbie-ness here with a simple question. Is there a way to execute php commands is the head section of an html document? I'm trying to create a page the draws information for the meta tags and the document title from information stored in my database.
you bet. standard practice....
All you need to do is something like:
<html> <head> <?php #call database query #dynamically build metatags #print dynamically built metatags ?> </head> <body> stuff </body> </html>
Please mark this resolved if it is!