无法将表单数据发布到RDS MySQL数据库

时间:2018-01-11 01:51:50

标签: php mysql database amazon-ec2 amazon-rds

大家好,可以提供帮助(或有同样的问题)。

我的网站上有一个表单我需要将数据存储在数据库中。 使用任何其他数据库服务时没有问题但使用Amazon RDS数据库时我没有运气。

此php文件用于将数据发送到数据库。

 <?php

$dbhost = "xxxx.xxxx.ap-southeast-2.rds.amazonaws.com";
$dbuser = "username";
$dbpass = "pasword";
$userid = $_GET['UniqueID'];
$username = $_GET['name'];
$useremail = $_GET['email'];
$userphone = $_GET['phone'];
$userref = $_GET['refid'];

$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn )
{
  die('Could not connect: ' . mysql_error());
}
$sql = "INSERT INTO landing_post (`useid`, `name`, `email`, `phone`, `refid`) VALUES ('$userid', '$username', '$useremail', '$userphone', '$userref')";

mysql_select_db('bunker');
$retval = mysql_query( $sql, $conn );
if(! $retval )
{
  die('Could not enter data: ' . mysql_error());
}
echo "Entered data successfully\n";
mysql_close($conn);
?>

表单提交到原始帖子操作后,会打开以下网址。

https://example.com.au/test/post.php?&UniqueID=10020&name=burger&email=test%40mvmedia.com&phone=1800+000+000&refid=28383

$ _GET函数使用url中的变量填充数据。

从基于cpanel的服务器运行php时出现此错误。

Could not connect: Can't connect to MySQL server on 'xxxxx.xxxxxxx.ap-southeast-2.rds.amazonaws.com' (111)

从AWS EC2实例运行php时,我甚至没有得到错误读数。

非常感谢任何帮助或见解。 干杯, 安迪

1 个答案:

答案 0 :(得分:0)

向JeanPaul98致敬,他让我走上了正确的道路。经过试用和许多错误,我发现下面的代码解决了这个问题。

<?php

$userid = $_GET['UniqueID'];
$username = $_GET['name'];
$useremail = $_GET['email'];
$userphone = $_GET['phone'];
$userref = $_GET['refid'];

$link = mysqli_connect('xxxxx.xxxxxx.ap-southeast-2.rds.amazonaws.com', 'User', 'password','database');

// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

// Check if server is alive
if (mysqli_ping($link))
  {
  echo "Connection is ok!";
  }
else
  {
  echo "Error: ". mysqli_error($link);
  }




 mysqli_query($link,"INSERT INTO table (`useid`, `name`, `email`, `phone`, `refid`) VALUES ('$userid', '$username', '$useremail', '$userphone', '$userref')") 
 or die(mysqli_error($link));


  echo "Entered data successfully\n";


mysqli_close($link);
?>

主要的变化是我停止使用mysql而是使用了mysqli。还有一些结构上的变化使代码与mysqli一起使用。对于其他有类似问题的人来说,有几点需要检查。