I'm trying to write a PHP page that takes the value of the TITLE meta tag from a value in my database. I've got all the database connection stuff working but the problem is that I cannot see how to write the title meta tag code to display the database value. I tried this as a stab in the dark ($page_title is already set before this point):
<head>
<title><?php $page_title?></title>
</head>
Can anyone help me please? I've looked in my book and on Google but can't find any code examples. Thanks.