I have a syntax error on this file how can fix it? Parse error: syntax error, unexpected ',' in C:\wamp\www\setup.php on line 23 thanks.
You are not defining a function on line 23! I'd assume looking at the structure of your code your attempting to connect to your database, so try using mysql_connect() Change line 23 from: ( $_DB['hostname'], $_DB['username'], $_DB['password'], $_DB['name'], $_DB['type'], TRUE, $_DB['port'] ); PHP: To: mysql_query($_DB['hostname'], $_DB['username'], $_DB['password'], $_DB['name'], $_DB['type'], TRUE, $_DB['port']); PHP: