douxiuyu2028 2015-01-31 07:09
浏览 38

Foreach循环 - 1-30作为列表,并在随机(1,2,4)次出现时将数字与数据库中的列匹配

I need help with a loop to echo 1-30 but after the 5th count list the numbers and match to a column in the database. The numbers are random in the database such as 1,2,4 but I would like to match with the numbers ($x++):

    $x=1;
    foreach($forDB->results() as $f) {
    $x++;
    $id = $f->id;
    $name = $f->string;
     if($x<=5) {
        if($id == $x) {
            echo '<div class="list-matched">'.$x.' = '.$name.'</div>,';
        } elseif($id != $x) {
            echo '<div class="list">'.$x.'</div>,';
        }
        if($x == 5){
            echo ' | ';
        }
     }elseif($x<=15) {
        if($id != $x) {
            echo '<div class="list-matched">.$x.' = '.$name.'</div>,';
        }elseif($id != $x) {
            echo '<div class="list">'.$x.'</div>,';
        }
     }
    }

Now the results are good up to: 1 = stringone, 2 = stringtwo, 3, 4, 5 | 6, 7, 8, 9

but then stops at 9.. and it does not echo the 4th value from the database or any numbers that are jumping around the columns (ex. 1,2,4,6,9,13,15).. Seems to be getting 1 and 2 fine but when it skips one or more numbers it stops. and tested by echo'ing the id after: if }elseif{$id != $x) { //echo x } echo $id;.. but it goes 1,2 and stops.. Please help!

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
    • ¥15 关于arduino编程toCharArray()函数的使用
    • ¥100 vc++混合CEF采用CLR方式编译报错
    • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
    • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
    • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
    • ¥50 如何openEuler 22.03上安装配置drbd
    • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
    • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
    • ¥15 Windows11, backspace, enter, space键失灵