Question
What's my Host Name (Address) for connection to MySql database from outside web using php?
I try
define("HOST", “localhost”);
define("USER", “root”);
define("PASS", “xxx@@@);
define("DB", “database name”);
mysql_connect(HOST,USER,PASS);
mysql_select_db(DB);
mysql_query("SET NAMES 'UTF8'");
But I couldn't connect to my sql database to pull data.
I was able to use the php code to pull from go daddy mysql
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×
how to know my host address for SQL connection
sample html file connect with MySQL database