duanlan7239 2014-04-12 05:49
浏览 40
已采纳

PHP无法访问服务器上的数据库

I am having difficulty getting my PHP code to reference my database and display certain information within it. The error I am getting is "Unable to access database." I have poured over this code numerous times and cannot seem to find the solution. The first file (Approve Deny Prayer Request) references another file (Prayer Request) in order to draw the data. The idea is that I would be able to edit prayer requests and then click an "Approved" button that would edit the entry and re-save it into the database. Below please find both CGI files.

Thanks for the help.

Approve Deny Prayer Request

<table cellpadding="10">
<tr>
<td>First Name</td>
<td>Last Name</td>
<td>Prayer Request</td>
</tr>

<?php

$username="XXXXXX";
$password="XXXXXXXXX";
$database="prayer";

mysqli_connect('fbcaltusprayerorg.ipagemysql.com',$username,$password,$database);
@mysqli_select_db($database) or die( "Unable to select database");
$query="SELECT * FROM Request";
$result=mysqli_query($query);
mysqli_close();

while ($row=mysqli_fetch_array($result)){
echo ("<tr><td>$row[Reg_F_Name]</td>");
echo ("<td>$row[Reg_L_Name]</td>");
echo ("<td>$row[Reg_Request]</td>");
echo ("<td><a href=\"cgi-bin/PrayerRequest.php?id=$row[id]\">Edit</a></td></tr>");
}
echo "</table>";

?>

Prayer Request

<?php

$username="XXXXX";
$password="XXXXXXXX";
$database="prayer";

mysqli_connect('fbcaltusprayerorg.ipagemysql.com',$username,$password,$database);
@mysqli_select_db($database) or die( "Unable to select database");
$query = "SELECT * FROM Request"; 
$result = mysqli_query($query);
$row = mysqli_fetch_array($result);
?>

<form method="post" action="cgi-bin/ApproveDenyPrayerRequest.php" />

<table>

<tr>
<td>First Name:</td>
<td><input type="text" name="first" value="<? echo "$row[Reg_F_Name]" ?>"></td>
</tr>

<tr>
<td>Last Name:</td>
<td><input type="text" name="last" value="<? echo "$row[Reg_L_Name]" ?>"></td>
</tr>

<tr>
<td>Prayer Request</td>
<td><input type="text" name="phone" value="<? echo "$row[Reg_Request]" ?>"></td>
</tr>

</table>

</form>
  • 写回答

1条回答 默认 最新

  • doujin8673 2014-04-12 06:07
    关注

    Don't use error suppression operator @ , it will hide the warnings and you will not be able to figure where the problem is..

    Rewrite your code like this for establishing the connection..

    <?php
    
    $username="XXXXX";
    $password="XXXXXXXX";
    $database="prayer";
    
    $link = mysqli_connect('fbcaltusprayerorg.ipagemysql.com', $username, $password, $database);
    
    if (!$link) {
        die('Connect Error (' . mysqli_connect_errno() . ') '
            . mysqli_connect_error());
    }
    
    echo 'Success... ' . mysqli_get_host_info($link) . "
    ";
    
    $query = "SELECT * FROM Request";
    $result = mysqli_query($link,$query); //<----- Added link
    $row = mysqli_fetch_array($result);
    ?>
    
    <form method="post" action="cgi-bin/ApproveDenyPrayerRequest.php" />
    
    <table>
    
        <tr>
            <td>First Name:</td>
            <td><input type="text" name="first" value="<? echo "$row[Reg_F_Name]" ?>"></td>
        </tr>
    
        <tr>
            <td>Last Name:</td>
            <td><input type="text" name="last" value="<? echo "$row[Reg_L_Name]" ?>"></td>
        </tr>
    
        <tr>
            <td>Prayer Request</td>
            <td><input type="text" name="phone" value="<? echo "$row[Reg_Request]" ?>"></td>
        </tr>
    
    </table>
    
    </form>
    

    Read more here from the PHP manual.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 echarts动画效果失效的问题。官网下载的例子。
  • ¥60 许可证msc licensing软件报错显示已有相同版本软件,但是下一步显示无法读取日志目录。
  • ¥15 Attention is all you need 的代码运行
  • ¥15 一个服务器已经有一个系统了如果用usb再装一个系统,原来的系统会被覆盖掉吗
  • ¥15 使用esm_msa1_t12_100M_UR50S蛋白质语言模型进行零样本预测时,终端显示出了sequence handled的进度条,但是并不出结果就自动终止回到命令提示行了是怎么回事:
  • ¥15 前置放大电路与功率放大电路相连放大倍数出现问题
  • ¥30 关于<main>标签页面跳转的问题
  • ¥80 部署运行web自动化项目
  • ¥15 腾讯云如何建立同一个项目中物模型之间的联系
  • ¥30 VMware 云桌面水印如何添加