Make sure the .php file that accompanies the game has the proper syntax for a .php file. Here is an example of what the .php file should include and the syntax:
PHP Code:
<?php
$config = array(
gname => 'double-wiresKAC',
gtitle => 'Double Wires',
bgcolor => '330099',
gwidth => '550',
gheight => '400',
active => '1',
gcat => '1',
//optional leave blank if not using
gwords => "Spiderman Stickman!",
object => "Swing as far and as often as you can. Aim with the mouse and left-click to shoot your swinging wire. The wire will anchor exactly where you click. ***SET DECIMAL PLACE TO 2*** Author's site: http://ishi.blog2.fc2.com/",
gkeys => "Mouse",
);?>
The error you seem to be getting is from the termination of the .php document. Make sure the .php is properly coded and doesn't contain any semi-colons (
; ) in the body of the .php document. The person who converted the game may have stuck a premature one in there by accident.