You are trying to import PHP code into MySQL, this will not work.
config.inc.php is some sort of php script, which should be executed by a script through your web browser. What you are doing is basically sending the PHP script to MySQL, which of course, MySQL does not understand. What MySQL understands is "SQL", which are statements that look like "
INSERT INTO some_table ....
UPDATE some_table
DELETE FROM some_table
config.inc.php is some sort of php script, which should be executed by a script through your web browser. What you are doing is basically sending the PHP script to MySQL, which of course, MySQL does not understand. What MySQL understands is "SQL", which are statements that look like "
INSERT INTO some_table ....
UPDATE some_table
DELETE FROM some_table