Hi Hayden, This line is certainly wrong...
$sitestyle = $_get['set'] $_session[$sitestyle): 1. There's a : at the end of the line, should this be a ; ? 2. There's a ) at the end, should this be a ] ? 3. $_SESSION[$sitestyle] will take the value of $sitestyle and use it as the key to look for a value within $_SESSION; do you mean $_SESSION['sitestyle'] ? 4. What are you trying to do with $_GET['set'] and $_SESSION['sitestyle'] ? You cannot simply place them next to each other. You might want to consider using something like http://pastebin.com/ to send us code snips so that it preserves the whitespace and other characters. Regards, Phill