While循环导致500内部服务器错误

时间:2018-07-25 19:55:32

标签: php php-5.6

如果我注释了while循环,则我的代码有效。我从没遇到while循环的问题。错误消息为500-内部服务器错误“正在寻找的资源有问题,无法显示。”感谢您的帮助。

 ini_set('memory_limit', '2048M');
    ini_set('display_errors',1);
    ini_set('display_startup_errors',1);
    error_reporting(-1);
    $conn = odbc_connect("Driver={SQL Server};Server=name; Database=main;", "user", "") or die ('001 DB Connection Failed.');

    $final = trim($_POST['po']);
//$final = "1234567','1245698; this is what this variable looks like.

    $sql = "select * from Table where id in ('$final')";
    $table = '';
    $query = odbc_exec($conn, $sql);
    echo $sql;
    $table = '<table class="table table-hover">
        <thead>
          <tr>
            <th>header</th>
           <th>header</th>
    <th>header</th>
<th>header</th>
<th>header</th>
<th>header</th>
          </tr>
        </thead>
        <tbody>';


            while ($dataRow = odbc_fetch_array($query))
            {

                $table .= '<tr>
            <td>'. $dataRow['data1'] .'</td>
            <td>'. $dataRow['data1'] .'</td>
            <td>'. $dataRow['data1'] .'</td>
            <td>'. $dataRow['data1'] .'</td>
            <td>'. $dataRow['data1'] .'</td>
            <td>'. $dataRow['data1'] .'</td>
           </tr>';
        }



    $table .= ' </tbody>
      </table>';

    echo $table;

    ?>

1 个答案:

答案 0 :(得分:0)

我将取消对while循环的注释,但是注释其中的块。 如果不是500,则表示结果中不存在$ datarow ['data1']。

第二 $sql = "select * from Table where id in ('$final')";

会给您一个损坏的查询。 $final将不需要正确的引号/单引号。