当前位置: 首页 > 知识库问答 >
问题:

您的SQL语法中有一个错误;请查看与您的MySQL服务器版本相对应的手册,了解在“leave”附近使用的正确语法。

长孙朝明
2023-03-14
<?php
        $result = mysql_query("select * from 'leave'");
        if ($result == FALSE)
        {
            die(mysql_error());
        }
        while($row = mysql_fetch_assoc($result))
        {
    ?>
    <tr>
        <td><a href = "app_status.php? id = <?php echo $row["Leave_ID"];?>" target = "_blank"></a>Leave ID</td>
        <td><?php echo $row["Emp_ID"];?></td>   
        <td><?php echo $row["Date_Apply"];?></td>
        <td><?php echo $row["Leave_Type"];?></td>
        <td><?php echo $row["Leave_Start"];?></td>
        <td><?php echo $row["Leave_End"];?></td>
        <td><?php echo $row["Status"];?></td>
    </tr>
    <?php
        }

    ?>

共有1个答案

陆承宣
2023-03-14

不要使用单个quaots

你可以把它作为

 $result = mysql_query("select * from leave");

或使用`键

 $result = mysql_query("select * from `leave`");
 类似资料: