I'm trying to add my SQL server information in a php config file, and when I type it in (using dreamweaver for error support), It errors halfway through my server name. I have entered the Username, database, and password all correctly, and they work, the only error is with the server line.
The line reads:
define('DB_SERVER',$mysql17.000webhost.com);
It errors right after the 17, so "$mysql17" is fine (blue), but the .000 is errored (red), and the webhost.com is black.
Any ideaas how to fix this?
The database server needs to read $mysql17.000webhost.com After the 17 part, it errors for the .000 part.
The line reads:
define('DB_SERVER',$mysql17.000webhost.com);
It errors right after the 17, so "$mysql17" is fine (blue), but the .000 is errored (red), and the webhost.com is black.
Any ideaas how to fix this?
The database server needs to read $mysql17.000webhost.com After the 17 part, it errors for the .000 part.