Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MySQL and <title> tags

Status
Not open for further replies.

anthonyon

MIS
Dec 16, 2004
9
0
0
US
I am a novice at programming and I am trying to find out how I can pull data from MySQL DB and include it in the <title> tags so the browser window will show the title as the data I pull from the db.

Something like:
<title>$row[columnname]</title>



Microsoft Windows Remote Support & Management
Pay only for results. 100% FREE quote consultation
 
I agree with sleipnir, depending on what server side language you plan to use to retrieve the data from the DB, will be the method of displaying it.

in PHP it would something similar to:
Code:
<title><?PHP echo $row['columnname'] ?> </title>

With that said, for additional help, I suggest you post the question in the forum of the server side language you will use.

PHP would be forum434

----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top