第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

有沒有辦法刪除傳輸?shù)搅硪粋€選項(xiàng)卡的數(shù)據(jù)?避免同一頁面重復(fù)?PHP 代碼點(diǎn)火器

有沒有辦法刪除傳輸?shù)搅硪粋€選項(xiàng)卡的數(shù)據(jù)?避免同一頁面重復(fù)?PHP 代碼點(diǎn)火器

PHP
拉丁的傳說 2023-07-01 10:13:09
我正在創(chuàng)建一個測驗(yàn)應(yīng)用程序,所以概念是當(dāng)測驗(yàn)提交并成功評分時,它將移至我已成功完成的第一個選項(xiàng)卡中,但問題是第二個選項(xiàng)卡,即我的測驗(yàn)名稱已回答仍然可見,如何將其刪除或在回答考試后使其消失。到目前為止,我已經(jīng)使用它來刪除,但問題是在我回答活動后,只有第一個索引從第二個選項(xiàng)卡中刪除。第一個選項(xiàng)卡 - 這是考試的結(jié)果<?php foreach($results as $result): ?>    <?php      $res = $result['activity'];  ?>        <h4><?php echo $result['activity']; ?></h4><?php endforeach; ?>這是第二個選項(xiàng)卡,顯示所有未回答的考試<?php foreach($posts as $post): ?>    <?php        $pos = $post['activity'];  ?>    <?php if($res != $post): ?>    //So by comparing it if it is compared then the name must be removed                                <a href="<?php echo base_url() ?>activity/start/<?php echo $post['id']; ?>/<?php echo $id; ?>">             <?php echo $post['activity']; ?>         </a>                                                                                                        <?php endif; ?>    <?php endforeach; ?>    ?>查看所有已發(fā)布考試的模型public function class_posts($id){    $this->db->select('*');     $this->db->from('posts');    $this->db->where('posts.teacher_id', $id);    $query = $this->db->get();    return $result = $query->result_array();}考試結(jié)果模型以及考試后查看。public function class_groups($id){    $this->db->select('*');    $this->db->from('posts');    $this->db->join('results', 'results.post_id  = posts.id');    $this->db->where('class_id', $id);    $this->db->where('student_id', $this->session->userdata('user_id'));    $this->db->group_by('posts.activity');    $query = $this->db->get();    return $result = $query->result_array();}var_dump($post)
查看完整描述

1 回答

?
湖上湖

TA貢獻(xiàn)2003條經(jīng)驗(yàn) 獲得超2個贊

在第一個選項(xiàng)卡代碼中循環(huán)遍歷 $results 時,您退出循環(huán)并為 $res 分配一個值,該值在第二個選項(xiàng)卡代碼中不會更改。這就是為什么第二個選項(xiàng)卡中只排除一個索引的原因。要解決此問題,請將 $post 與 $results 中存儲的所有值進(jìn)行比較。


如果您的 $results 數(shù)組包含所有已回答的測驗(yàn),您可以在循環(huán) $posts 時使用 in_array 檢查 $results 是否包含 $post 的值。這是示例代碼:


if (!in_array($post, $results)) { //search in $results for $post

   // Show the Quiz since it has not been answered

}

我建議創(chuàng)建一個新數(shù)組,在第一個選項(xiàng)卡的循環(huán)中保存 $res 的每個新值,并使用上面相同的邏輯。


第一個選項(xiàng)卡的新代碼


<?php $newArray = array();

      foreach($results as $result):

      $res = $result['activity'];

      array_push($newArray, $res) ?>

      <h4><?php echo $result['activity']; ?></h4>

<?php endforeach; ?>

第二個選項(xiàng)卡的新代碼


<?php foreach($posts as $post): 

      $pos = $post['activity']; 

      if (!in_array($pos, $newArray)): ?>

      <a href="<?php echo base_url();?>activity/start/<?php echo $post['id'];?>/<?php echo $id;?>"> 

      <?php echo $post['activity']; ?> 

      </a>

      <?php endif; ?>

<?php endforeach; ?>


查看完整回答
反對 回復(fù) 2023-07-01
  • 1 回答
  • 0 關(guān)注
  • 133 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號