我是 Php 和 Xeround 的新手。我想远程创建一个数据库,因为我正在使用Xeround 服务,现在我想在我的系统上创建一个 php 文件并想访问在 xeround 上创建的数据库。它的帮助说我们可以使用:
<?php
$con = mysql_pconnect("instance123.db.xeround.com:4567","john","malon");
if (!$con)
die('Could not connect: ' . mysql_error());
mysql_select_db("mydb");
// rest of the code . . .
?>
我的问题是:
如何从我的电脑访问它?我需要安装什么来运行 php 页面?我要安装 WAMP 吗?但是当我远程访问 PHPMyAdmin for MySQL 时,WAMP 有什么用,或者我只需要安装 Apache Server 吗?或者我该怎么办?我很困惑。
我基本上想通过访问 xeround 的数据库从我的计算机上运行一个查询。我没有网站,因此将使用 localhost 来访问它。