Ok well i have it the way u said now and i'm still getting this error. I looked in the file but i can't see anything wrong
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/ootaclan/public_html/themes.php on line 3
Here's the themes.php file
<?php
global $themeselection, $pagebackground, $tabelbackground, $link, $linka, $linkv, $textcolor, $tabelcolumn, $navrowtop, $themecopyright;
$themeselection = "subBlack";
/* Enter one of the following choices-
subBlack
*/
switch ($themeselection) {
case "subBlack":
$pagebackground = "#000000";
$tabelbackground = "#000000";
$link = "#C0C0C0";
$linka = "#C0C0C0";
$linkv = "#C0C0C0";
$textcolor = "#C0C0C0";
$tabelcolumn = "#212121";
$navrowtop = "images/headbg.gif";
$themecopyright = "Theme subBlack © <a href='http://www.gamerhaven.com' target='_BLANK'>spectre</a>";
break;
case "bar":
echo "i is bar";
break;
case "cake":
echo "i is cake";
break;
}
?>