Forum Moderators: coopster
i would like to be able to fix it where everytime an album is selected on the right and opened the page title is then changed to the name of the album.
[edited by: jatar_k at 4:43 am (utc) on June 25, 2004]
[edit reason] no personal urls thanks [/edit]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<?php
if($pageName == "tupacres") {
$titleadd = "2Pac Ressurrection OST";
?>
<html>
<head>
<title>example.com Album Reviews<?=$titleadd?></title>
</head>
if i remove--->
if($pageName == "tupacres") {
then the addtitle works but,it is added to all the page titles?
I think i am assigning the variable wrong. any suggestions?
[edited by: jatar_k at 9:55 pm (utc) on June 26, 2004]
[edit reason] removed specifics [/edit]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<?php
if($pageName == "tupacres")
$titleadd = "2Pac Ressurrection OST";
?>
<html>
<head>
<title>example.com Album Reviews<? echo $titleadd;?></title>
</head>
[edited by: jatar_k at 9:56 pm (utc) on June 26, 2004]
[edit reason] removed specifics [/edit]