Dynamic sites - title change

A

Anonymous

Guest
Hi, how can I change the <title>???</title> on a dynamic page. My site is build using php and mysql DB.
Thnx
 
If you send a GET variable containing the title -->
Code:
<title>
<?php echo $HTTP_GET_VARS["my_title"]; ?>
</title>

If you use POST method, then change for $HTTP_POST_VARS["my_title"]

If you keep your titles in a database, then tell us your specific case.
 
Back
Top