Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请记住,我是新手。我正在使用 MAMP 编辑 php 代码。我确实有一个带有 FatCow 的外部主机,并在那里建立了一个数据库。我被告知在发布到实际 Web 主机之前在 localhost 上进行测试,因此我将文件存储在 MAMP 的 htdocs 文件夹中,并希望创建到我的外部数据库的连接。MAMP 是否只支持 localhost 连接或者我需要做的事情?任何帮助将不胜感激。
$con = mysql_connect($host, $user, $pass) or die("cannot connect to host"); Mysql_select_db($dbname, $con);
$host 是您的数据库主机提供的主机名(IP 地址或域名)
$user 和 $pass 是您的数据库用户和密码
$dbname 是您的数据库名称..
如果它没有输出任何东西,那么你已经成功连接到数据库......
希望有帮助^^