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