我正在编写一个程序,在该程序中我试图通过 Android Emulator 将数据存储到 XAMPP Server 中,但是在将数据插入 XAMPP 时出现错误。
错误:未知状态!
我确信我收到了这个错误,因为我没有使用正确的 url 进行连接
请检查我的以下网址以通过 Android 模拟器连接到 XAMPP 服务器:
String url = "http://ipaddress/test.php"
我也尝试过使用我的 IP 地址,但每当我在浏览器上浏览它时,得到 Object Not Found:
在 RomPager 服务器上找不到请求的 URL '/test.php'
String url = "http://127.0.0.1/test.php"
String url = "http://10.0.2.2/test.php"
注意: 我之前测试过我的 php 代码,它工作正常,所以我的 URL 有问题
我在 PHP 脚本中使用以下行:
$objConnect = mysql_connect("localhost","root","") or die("Cannnot Connect to Database");
$objDB = mysql_select_db("registration");