Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

मैं अपने डेटाबेस से तालिका के कुछ हिस्सों को कैसे प्रदर्शित नहीं कर सकता?

अपने लूप में, आपको डिफ़ॉल्ट व्यवहार से अलग होने के लिए कुछ सशर्त बयान देना होगा।

while($objResult = mysql_fetch_array($objQuery))
{
    if(($intRows)%4==0)
    {
        echo"<tr>"; // You forgot this.
    }

    echo "<td>";
    $intRows++;
    if ($intRows == 3 || $intRows == 4) : 
?>
    <!-- special cells -->
<?
    else:
?>
    <center>
        <img src="https://s3.amazonaws.com/thumbnails/<?=$objResult["Picture"];?>" height="190" width="190" /></a><br>
        <?=$objResult["albumName"];?>
        <br>
    </center>
<?php
    endif;

    echo"</td>";
    if(($intRows)%4==0)
    {
        echo"</tr>";
    }
}
// You also need this part:
echo ($intRows %4 > 0 ? "</tr>" : "") . "</table>";


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. कैस्केड अवधारणा को हटाने पर MySQL?

  2. Android ऐप डेटा को वेबसाइट डेटाबेस से कनेक्ट करें

  3. MySQL चयन करें:जहां समय अधिक है और समय से कम है

  4. सीरियलाइज़ बनाम इम्प्लोड

  5. यदि आईडी समान है तो लारवेल अद्वितीय को मान्य करता है