0
How to connect database to web service?
Is there any way to connect Mysql database to web service?
1 Odpowiedź
+ 2
Yes
try {
$db = new PDO(”mysql:host=localhost;dbname=name”, ”username”, ”password”);
} catch(PDOException $e) {
print $e->getMessage();
die();
}