Connecting to MySql with Dreamweaver using remote access

A

Anonymous

Guest
ok things that your are trying is: mysql database installed on one machine and want access from other machine .
sol: :!:
<?php
$link=mysql_connect("Host on which your mysql is ", "usrname","passwd") or die("No host Connection !");
mysql_db("db on host you want to select ",$link) or die("No host DB Connection!");

?>
this script will make connection to your remote mysql db now you can query ....
 
Make sure proper permission has been assigned to that host.

Thanks and Regards,
Prensil Technologies Pvt Ltd
Software Development Company
http://www.prensil.com
 
Back
Top