-3

あなたが私を助けることができるかどうかあなたに質問があります.データベースからデータを取得する変数がいくつかありますが、この問題を解決したいと思います if all the variables are empty then show something if not then show the just the variables that have data.

コードは次のとおりです。

foreach ($row as $result) {
    if ($row[29] == '') {
        $string29 = '';
    }else if ($row[29] == 0){
        $string29 = '';
    } else{
        $string29 = '<div class="add_img"><h1>Pression</h1><img src="images/'.$row[29].'.png"></div>';
    }
}

foreach ($row as $result) {
    if ($row[30] == '') {
        $string30 = '';
    }else if($row[30] == 0){
        $string30 = '';
    } else{
        $string30 = '<div class="add_img"><h1>Fixation</h1><img src="images/'.$row[30].'.png"></div>';
    }
}

`

で、〜がある echo &string29 and so on........

4

1 に答える 1