SQL查询在IIS的生产环境中失败,但在运行Apache的测试环境中有效

时间:2018-10-05 17:13:58

标签: php mysql apache iis-10

当在测试环境中完全正常运行时,当我上传到实时环境中时,查询失败了,这点我有些茫然,所以我终于崩溃了,决定问那些可能比我熟练得多的堆栈溢出问题,如果我错过了某些事情。他们从两个不同的表中查看序列号信息,以获取系统规格以及与父序列相关的任何硬盘驱动器信息

<?php
$Dev_HDD = 0;

$con=mysqli_connect("localhost","username","user_password","database");
// Check connection
if (mysqli_connect_errno())
    {
        echo "Failed to connect to MySQL: " . mysqli_connect_error();
    }

if (isset($_POST["serial"]))

{
    $SerialNumber = $_POST["serial"];

    $sql ="SELECT system.Manufacturer, system.Model, system.SerialNumber, system.Processor, system.Memory FROM system  WHERE SerialNumber = '" .$SerialNumber. "'" ;

    if ($result=mysqli_query($con,$sql))
    {


        // Fetch one and one row
        while ($row=mysqli_fetch_row($result))
        {
            $System_Manufacturer = $row[0];
            $System_Model = $row[1];
            $System_SerialNumber = $row[2];
            $System_Processor = $row[3];
            $System_Memory = $row[4];


?>

    <table border="0" height="100%" width="100%" align="left" valign="top">
        <tr>
            <td colspan="2">
                <hr />
            </td>
        </tr>

        <tr>
            <td colspan="2" valign="top">System Summary:</td>
        </tr>
        <tr>
            <td colspan="2">
                <hr />
            </td>
        </tr>

        <tr>
            <td>System Manufacturer</td>
            <td>
                <?php echo $System_Manufacturer; ?>
            </td>
        </tr>

        <tr>
            <td>System Model:</td>
            <td>
                <?php echo $System_Model; ?>
            </td>
        </tr>

        <tr>
            <td valign="top">System Serial Number</td>
            <td valign="top">
                <?php echo $System_SerialNumber; ?>
            </td>
        </tr>

        <tr>
            <td valign="top">System Processor</td>
            <td valign="top">
                <?php echo $System_Processor; ?>
            </td>
        </tr>

        <tr>
            <td valign="top">System Memory</td>
            <td valign="top">
                <?php echo $System_Memory; ?>
            </td>
        </tr>

    <?php
}

        // Free result set
        mysqli_free_result($result);
    }
    else
    {
        echo "The serial number specified could not be located<br>";
    }

    $sql ="SELECT device.recid, device.Manufacturer, device.Model, device.SerialNumber, device.Capacity, device.RPM, device.ErasureMethod, device.ErasureResults FROM device WHERE SystemSerialNumber = '" . $System_SerialNumber . "'" ;

    if ($result=mysqli_query($con,$sql))
    {


        // Fetch one and one row
        while ($row=mysqli_fetch_row($result))
        {
            $Dev_Recid = $row[0];
            $Dev_Manufacturer = $row[1];
            $Dev_Model = $row[2];
            $Dev_DeviceSerialNumber = $row[3];
            $Dev_Capacity = $row[4];
            $Dev_RPM = $row[5];
            $Dev_ErasureMethod = $row[6];
            $Dev_ErasureResults = $row[7];

    ?>

    <tr>
        <td colspan="2">
            <hr />
        </td>
    </tr>

    <tr>
        <td colspan="2" valign="top">Storage Summary(<?php echo $Dev_HDD = $Dev_HDD + 1; ?>):</td>
    </tr>

    <tr>
        <td colspan="2">
            <hr />
        </td>
    </tr>

    <tr>
        <td>Hard Drive Manufacturer</td>
        <td>
            <?php echo $Dev_Manufacturer; ?>
        </td>
    </tr>

    <tr>
        <td>Hard Drive Model:</td>
        <td>
            <?php echo $Dev_Model; ?>
        </td>
    </tr>

    <tr>
        <td valign="top">Serial Number Lookup</td>
        <td valign="top">
            <?php echo $Dev_DeviceSerialNumber; ?>
        </td>
    </tr>

    <tr>
        <td valign="top">Hard Drive  Capacity</td>
        <td valign="top">
            <?php echo $Dev_Capacity; ?>
        </td>
    </tr>

    <tr>
        <td valign="top">Hard Drive  Speed</td>
        <td valign="top">
            <?php echo $Dev_RPM; ?>
        </td>
    </tr>

    <tr>
        <td>Erasure Method:</td>
        <td>
            <?php echo $Dev_ErasureMethod; ?>
        </td>
    </tr>

    <tr>
        <td>Erasure Results:</td>
        <td>
            <?php echo $Dev_ErasureResults; ?>
        </td>
    </tr>

    <tr>
        <td>Parent Serial Number:</td>
        <td>
        <?php echo "<a href='logs/" .$Dev_DeviceSerialNumber.".log' target='_blank'>".$Dev_DeviceSerialNumber."</a> <br>";?>
        </td>
    </tr>
</table>

<?php
        }
    }

        // Free result set
        mysqli_free_result($result);


    mysqli_close($con);
}
?>



<?php

        echo " <br>";

        echo "<pre></pre>";
?>

0 个答案:

没有答案