Hi, how can I change the <title>???</title> on a dynamic page. My site is build using php and mysql DB.
Thnx
Dynamic sites - title change
Moderators: egami, macek, gesf
- Joan Garnet
- Moderator
- Posts: 387
- Joined: Sat Aug 03, 2002 2:56 am
- Location: Mars
- Contact:
If you send a GET variable containing the 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.
Code: Select all
<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.