Connecting laptop MS SQL Express server using PHP script on Hostinger - php

[First time trying the code]I am trying to use a simple PHP file, that I uploaded to Hostinger, to connect and query my laptop's Microsoft SQL Express Server (to test the website, as the database is large to upload to the Hostinger database). The following Ms SQL connect gives an "HTTP ERROR 500" page error (*possibly because Hostinger does not support MsSQL):
<?php
$host = 'DESKTOP-SL59JDD\SQLEXPRESS';
$dbname = 'FXDatabase';
$username = 'sa';
$password = 'test123';
$dbhandle = mssql_connect($host, $username, $password)
or die(“Couldn’t connect to SQL Server on $host”);
?>
Also attempted MySQL connect as followed, which gives a "Connection failed: php_network_getaddresses: getaddrinfo failed: Name or service not known" error.
$host = 'DESKTOP-SL59JDD\SQLEXPRESS';
$dbname = 'FXDatabase';
$username = 'sa';
$password = 'test123';
$conn = mysqli_connect($host, $username, $password, $dbname);
if (!$conn) {
die("Connection failed: " . mysqli_connect_error());
} else {
echo "Connection Successful!";
}
is there a permission on the Microsoft SQL Express server that I am missing to give to the sa user?

Related

How can I bypass error 111 MySQL in PHP connection?

I have bought a database MySQL to use on my domain/host.
I can connect to the database via wampserver (localhost) without problems.
But when I am trying to connect to the host website it gives me an error.
Connection failed: Can't connect to MySQL server on 'mysql-******.net' (111 "Connection refused")
My code:
<?php
$servername = "mysql-*********.net";
$username = "username8954";
$password = "dolphyn1235";
$dbname = "animals";
$dbServerPort = "26313";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname, $dbServerPort);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
echo "Connected successfully";
?>
Any ideas how to solve this?
Check in your MySQL Server configuration files (my.cnf), find bind-address = 127.0.0.1 then comment them with # at the begining of the line. and then restar your MySQL.

How to connect amazon RDS database using php

I get this error when I try to connect to the mysql database using php mysqli class.
I am using
OS :- windows 10
webserver :- xampp
php :- 7.3.3
it got a warning error and error message is junk.
mysqli::__construct(): (HY000/2002):
�ڑ��ς݂̌Ăяo���悪���̎��Ԃ�߂��Ă������������Ȃ��������߁A�ڑ��ł��܂���ł����B�܂��͐ڑ��ς݂̃z�X�g���������Ȃ��������߁A�m�����ꂽ�ڑ��͎��s���܂����
Using following code:
$dbServerName= "*******ap-northeast-1.rds.amazonaws.com";
$dbUsername= "example";
$dbPassword= "*******";
$dbName= "example";
// Create connection
$conn = new mysqli($dbServerName, $dbUsername, $dbPassword, $dbName);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
echo "Connected successfully";
dbServerName is amazon.com for example,
password is * for security.

How to connect to my remote Mysql Database via Xampp

I am using Xampp to update my website and since I have added a Mysql database I have the error further down locally while it works fine online.
I'm using the code below to connect to my database:
<?php
$servername = "myservername";
$username = "myusername";
$password = "mypassword";
// Create connection
$conn = new mysqli($servername, $username, $password);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
echo "Connected successfully";
?>
http://localhost/connectdb.php
Result:
Connection failed: php_network_getaddresses: getaddrinfo failed: No
such host is known.
http://example.com/connectdb.php
Result:
Connected successfully
So there must be some configuration to do in Xampp to access a remote database or do I need to ask my host to whitelist my private IP Address? My host is OVH.
Thanks for your help

connection error while using php and sql server 2008

Connection failed: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
as i establish connection between my computer and remote machine using "php" and sql server 2008 respectively. i got this error.
<?php
$servername = "";
$username = "";
$password = "";
$dbname = "complaint";
// Create connection
$conn = new mysqli($servername, $username, $password,$dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
?>
You must have a defined servername, username and password. If the server is local than use "localhost" if it is a remote server use IP "X.X.X.X"

Webmatrix Database connect error using PHP

I have created a database using webmatrix which I'm unable to connect. Here is my web.config file.
<add connectionString="Data Source=.\SQLEXPRESS;Initial Catalog=EmptySite10;User ID=sa;Password=serial" name="EmptySite10" providerName="System.Data.SqlClient" />
Here is my PHP connect code.
$servername = ".\SQLEXPRESS";
$username = "sa";
$password = "serial";
$dbname = "EmptySite10";
$conn = mysqli_connect($servername, $username, $password, $dbname) or die("Could not connect : " . mysqli_connect_error());
mysqli_close($conn);
I get the following error:
Could not connect : php_network_getaddresses: getaddrinfo failed: No such host is known.
How can I connect to database?
$servername = "127.0.0.1";
enter the ip address or hostname in $servername.

Categories