These are the first 50 lines of the file:
CODE
<?
/* Calculate For The "A" Group - The Latest Games ID */
$a_B = 002;
while(file_exists("a_" . $a_B . ".dat")) {
$a_B++;
}
$new_page_contents = " <? $title = \"" . $_POST["new_name"] . "\"; include \"/home/cmatcme/public_html/header.php\"; echo = \"<h3>" . $_POST["new_name"] . "</h3> " . $_POST["new_desc"] . " <object> <embed src='" . $_POST["new_game_url"] . "'> </object> include \"/home/cmatcme/public_html/footer.php\"; ?> ";
$a_stream = fopen($a_B . ".cmat", "w+");
fwrite($a_stream, $new_page_contents);
fclose($a_stream);
/* Calculate For The "B" Group - The Group Of The Games UniQue Numbers */
$b_1 = file_get_contents("/home/cmatcme/public_html/games/b_1.dat");
$b_2 = file_get_contents("/home/cmatcme/public_html/games/b_2.dat");
$b_3 = file_get_contents("/home/cmatcme/public_html/games/b_3.dat");
$b_4 = file_get_contents("/home/cmatcme/public_html/games/b_4.dat");
$b_5 = file_get_contents("/home/cmatcme/public_html/games/b_5.dat");
unlink("/home/cmatcme/public_html/games/b_6.dat");
$b6_stream = fopen("/home/cmatcme/public_html/games/b_6.dat", "w+");
fwrite($6_stream, $b_1);
fclose($6_stream);
unlink("/home/cmatcme/public_html/games/b_5.dat");
$b5_stream = fopen("/home/cmatcme/public_html/games/b_5.dat", "w+");
fwrite($5_stream, $b_2);
fclose($5_stream);
unlink("/home/cmatcme/public_html/games/b_4.dat");
$b4_stream = fopen("/home/cmatcme/public_html/games/b_4.dat", "w+");
fwrite($4_stream, $b_3);
fclose($4_stream);
unlink("/home/cmatcme/public_html/games/b_3.dat");
$b3_stream = fopen("/home/cmatcme/public_html/games/b_3.dat", "w+");
fwrite($3_stream, $b_4);
fclose($3_stream);
/* Calculate For The "A" Group - The Latest Games ID */
$a_B = 002;
while(file_exists("a_" . $a_B . ".dat")) {
$a_B++;
}
$new_page_contents = " <? $title = \"" . $_POST["new_name"] . "\"; include \"/home/cmatcme/public_html/header.php\"; echo = \"<h3>" . $_POST["new_name"] . "</h3> " . $_POST["new_desc"] . " <object> <embed src='" . $_POST["new_game_url"] . "'> </object> include \"/home/cmatcme/public_html/footer.php\"; ?> ";
$a_stream = fopen($a_B . ".cmat", "w+");
fwrite($a_stream, $new_page_contents);
fclose($a_stream);
/* Calculate For The "B" Group - The Group Of The Games UniQue Numbers */
$b_1 = file_get_contents("/home/cmatcme/public_html/games/b_1.dat");
$b_2 = file_get_contents("/home/cmatcme/public_html/games/b_2.dat");
$b_3 = file_get_contents("/home/cmatcme/public_html/games/b_3.dat");
$b_4 = file_get_contents("/home/cmatcme/public_html/games/b_4.dat");
$b_5 = file_get_contents("/home/cmatcme/public_html/games/b_5.dat");
unlink("/home/cmatcme/public_html/games/b_6.dat");
$b6_stream = fopen("/home/cmatcme/public_html/games/b_6.dat", "w+");
fwrite($6_stream, $b_1);
fclose($6_stream);
unlink("/home/cmatcme/public_html/games/b_5.dat");
$b5_stream = fopen("/home/cmatcme/public_html/games/b_5.dat", "w+");
fwrite($5_stream, $b_2);
fclose($5_stream);
unlink("/home/cmatcme/public_html/games/b_4.dat");
$b4_stream = fopen("/home/cmatcme/public_html/games/b_4.dat", "w+");
fwrite($4_stream, $b_3);
fclose($4_stream);
unlink("/home/cmatcme/public_html/games/b_3.dat");
$b3_stream = fopen("/home/cmatcme/public_html/games/b_3.dat", "w+");
fwrite($3_stream, $b_4);
fclose($3_stream);
Line 31 has been highlighed in red as that is where the error apparently is. This is the error:
QUOTE
Parse error: parse error, unexpected T_LNUMBER, expecting T_VARIABLE or '$' in /home/cmatcme/public_html/games/XXXXX.cmat on line 31
That line is no different to any of the others surrounding it, so why that line?

