im getting this error Parse error: syntax error, unexpected '/' in /Toys/config.php on line 3 here is the code can anyone spot anything wrong here? <?php / ProArcadeScript version: 1.1 / / Template configuration / $cTpl = array( "nColumnsMain" => 2, // in the main list on the front page "nColumnsCat" => 2, // in the main list on a category page "nColumnsListCat" => 3, // in the list of all category's games "nMaxGameW" => 655, "nMaxGameH" => 655, "nStarSize" => 16 // width and height, on the game page ); ?>
Simply you can use below code: <?php /* ProArcadeScript version: 1.1 Template configuration */ $cTpl = array( "nColumnsMain" => 2, // in the main list on the front page "nColumnsCat" => 2, // in the main list on a category page "nColumnsListCat" => 3, // in the list of all category's games "nMaxGameW" => 655, "nMaxGameH" => 655, "nStarSize" => 16 // width and height, on the game page ); ?>
The error message actually stated that the problem is at line 3. So, take a look at line 3 and you will see the / (single slash) You should comment using // ( two slashes ) - ads2help