0

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;
?>
4

1 回答 1

0

您的 OpenShift 设备上的 MySQL 服务器无法通过 Internet 访问,只能通过设备或通过端口转发访问。您可以在此处了解有关通过端口转发访问数据库的更多信息:https ://developers.openshift.com/managing-your-applications/port-forwarding.html

于 2016-07-31T15:42:17.310 回答