Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Gambar sebagai tautan dalam database MySQL?

Jawaban singkat

Cukup echo keluarkan URL gambar di src atribut dan gambar akan ditampilkan.

<img id="result_img" src="<?php echo $imagelink; ?>" />

Solusi yang Berfungsi:

Desain Meja:

images

| id | title      | link                  | imagelink    | description |
------------------------------------------------------------------------
| 1  | Some Title | http://www.google.com | myimage1.png | Some text   |
------------------------------------------------------------------------
| 2  | My Title   | http://www.yahoo.com  | myimage2.png | Some text   |         

Kueri SQL

SELECT title, link, imagelink, description FROM images WHERE id = ?

PHP

<?php

$stmt = $mysqli->prepare("SELECT title, link, imagelink, description FROM images WHERE ID = ?");
$stmt->bind_param("i", $ID);
$stmt->execute();
$stmt->bind_result($title,$link,$imagelink,$description);
$stmt->fetch();

?>
<div class="pagination" style="display:inline">
  <ul style="background-color:#">
    <li><div   class="span3_search">
    <h2><a href='<?php echo $link; ?>'><b><?php echo $title; ?></b></a></h2>
    <br />
    <img id="result_img" src="<?php echo $link; ?>" />
    <br />
    <?php echo $description; ?>
    <br />
    <a href='<?php echo $link; ?>'><?php echo $link; ?><br /><br /></a>
    <p></div>
    </li>
  </ul>
 </div>


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Mencoba membaca kesalahan aliran terakhir di MySQL

  2. CAST bersarang tidak berfungsi

  3. Bagaimana saya bisa mendapatkan kunci asing dari tabel di mysql

  4. Apa cara yang disarankan untuk terhubung ke MySQL dari Go?

  5. Mengalami masalah dengan fungsi pencarian php dan ajax