I cant connect to the database with my PC IP Adress, but i can connect to the database with my PC Name. How i can fix it or i can configure it in sql server ?
So, what are the differences between PC Name and 127.0.0.1 to connect SQL Server ?
Here is different my code:
mssql_connect("MYPCNAME","sa","solution") or die('Connection Failed'); //this is OK
mssql_connect("127.0.0.1","sa","solution") or die('Connection Failed'); // this is failed
i need your expertise ;)