项目:学生查看自己的作业情况和分数(php)

大城市里の小女人 提交于 2020-02-04 22:51:30
<?php
include '../includes/db.ini.php';
    try
    {
        $sql='SELECT work_id,title,work_text,score_value
              FROM homework;';
        $result=$pdo->query($sql);
        $cnt=$result->rowCount();
    }
    catch (PDOExpecyion $e)
    {
        
    }
    if ($cnt!=0)
    {
        while($row=$result->fetch())
        {
            $outputcheck[]=array('work_id'=>$row['work_id'],'title'=>$row['title'],'work_text'=>$row['work_text'],'score_value'=>$row['score_value']);
        }
        include '../student/checkhomeworkout.php';
    }
    else 
    {
        echo 'wrong';
        exit();
    } 
?>
<html>
</html>
<head>
</head>
<body>
<?php
foreach ($outputcheck as $out):
    
?>
<a href="">
<?php echo $out['work_id'].' '.$out['title'].' '.$out['work_text'].' '.$out['score_value'];?></br>
</a>
<?php endforeach;?>
</body>
</html>

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!