PHP 请求显示一条消息警告:
mysql_connect(): php_network_getaddresses: getaddrinfo failed: 没有这样的主机是已知的。在第 12 行的 D:\xampp\htdocs\project\www\js\insert.php
我正在使用 openshift 主机和离子框架。我仍在使用本地主机。
这是 insert.php :
<?php
$data = json_decode(file_get_contents("php://input"));
$first_name = mysql_real_escape_string($data->first_name);
$last_name = mysql_real_escape_string($data->last_name);
$age = mysql_real_escape_string($data->age);
$homeCity = mysql_real_escape_string($data->homeCity);
$mobile = mysql_real_escape_string($data->mobile);
$host="www.pyf-michaelreda96.rhcloud.com";
mysql_connect($host,"********","********") or die(mysql_error());
mysql_select_db("database") or die(mysql_error());
mysql_query("INSERT INTO members(first_name,last_name,age,home_city,mobile_number)VALUES('".$first_name."','".$last_name."','".$age."','".$homeCity."','".$mobile."')");
$id = json_decode(mysql_insert_id());
echo $id;
?>