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

PHP का उपयोग करके MySQL तालिका में विशिष्ट पाठ के आधार पर विशिष्ट छवि प्रदर्शित करें

इसे आजमाएं:

$sql = "SELECT * FROM game";
$result = mysql_query($sql) or die(mysql_error());
$pathImg = "/images/icons/";
while ($row = mysql_fetch_array($result)) {
    $pathFile = $pathImg . $row['sport_cat'] . ".png";
    if (!file_exists($pathFile)) {
        $pathFile = $pathImg . "unknown.png";
    }
    echo '<img src="' . $pathFile . '">';
}

आप आस्क को संपादित करते हैं और मैं उत्तर को संपादित करता हूं :P

<table>
    <?
    if (mysql_num_rows($result) != 0) {
        $counter = $starting + 1;
        $pathImg = "/images/icons/";
        while ($data = mysql_fetch_array($result)) {
            //calculate url image
            $pathFile = $pathImg . $data['sport_cat'] . ".png";
            if (!file_exists($pathFile)) {
                $pathFile = $pathImg . "unknown.png";
            }
            ?>
            <tr>
                <td align="center"><img src="<?=$pathFile?>" alt="<?=$data['sport_cat']?>"></td>
                <td align="center"><? echo $data['sport_cat']; ?></td>
                <td align="center"><? echo $data['timelive']; ?></td>
                <td align="center"><? echo $data['match_title']; ?></td>
                <td align="center"><? echo $data['selection']; ?></td>
            </tr>
            <?
            $counter++;
        }
    }
    ?>
</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. क्या हम UPPERCASE और LOWERCASE फ़ंक्शंस के लिए MySql में फंक्शनल इंडेक्स बना सकते हैं?

  2. एक mysql क्वेरी की आवश्यकता है

  3. PHP MYSQL:तत्काल चयन करें + सम्मिलित करें

  4. लॉग-स्लो-क्वेरी के लिए MySQL लॉन्ग क्वेरी टाइम वैल्यू बदलें या सेट करें

  5. अद्यतन के दौरान कमांड निष्पादन के दौरान घातक त्रुटि आई