when i add the lines of code i get the following error (line 30 is the end of the added code

)
PHP Code:
Parse error: syntax error, unexpected T_DEC, expecting T_VARIABLE or '$' in /home/mycyc/public_html/index.php on line 30
the code im using in index.php is this
PHP Code:
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'index'); // change this depending on your filename
// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array(
);
// get special data templates from the datastore
$specialtemplates = array(
);
// pre-cache templates used by all actions
$globaltemplates = array(
'Index',
);
// pre-cache templates used by specific actions
$actiontemplates = array(
);
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################
$navbits = array();
$navbits[$parent] = 'My Cyber Youth Club';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('Index') . '");');
?>
that code then calls the temple name Index (the code i used is based on
this tutorial)
hope that helps??
[edit]##############
hmm. i removed the code, re-uploaded
re-added code, re-uploaded and it seems to be working :\
yep i tested it a bit and seems to work

thanks