Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Dlaczego mój obraz się nie wyświetla?

Nie ustawiasz prawidłowego Content-type nagłówek przed echem danych obrazu.

MUSISZ również zmienić $_GET['id'] parametr.

// Escape $id
$id = mysql_real_escape_string($_GET['id']);   

$link = mysql_connect($host, $user, $passwd);
mysql_select_db($dbName);

// Use the escaped $id
$query = "SELECT picture FROM products WHERE serial='$id'";
$result = mysql_query($query,$link);

if ($result) {
  $row = mysql_fetch_assoc($result);

  // Set the Content-type
  // This assumes image/jpeg. If you have different image types,
  // you'll need logic to supply the correct MIME type
  // image/jpeg image/png image/gif, etc
  header("Content-type: image/jpeg");
  echo $row['picture'];
}
?>

W twoim głównym skrypcie wygląda na to, że po prostu brakuje Ci echo

        <td><?php '<img src="getImage.php?id=' . $row['serial'] .'"/>'
        // Should be
        <td><?php echo '<img src="getImage.php?id=' . $row['serial'] .'"/>'
        // ------^^^^^^



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Tworzenie tabeli liczb w MySQL

  2. Jak mogę opóźnić kolumny w MySQL?

  3. Serwer MAMP mysql nie uruchamia się. Żadne procesy mysql nie są uruchomione

  4. Pobierz wszystkie dzieci według identyfikatora rodzica i klauzuli gdzie w mysql

  5. Jak wstawić wartości w tabeli z kluczem obcym za pomocą MySQL?