Visualizzare immagini in PHP - MYSQL

Marco Candian

Nuovo Utente
26 Ott 2014
33
0
6
Buongiorno a tutti ed Auguri di Buone Feste!

Vorrei sottoporvi il mio problema: memorizzo il percorso di files immagini nel mio DB, in un'latra pagina le richiamo ma mi viene mostrato solo il percorso nonostante racchiuda tutto nel tag <img>

Codice:
<?php include('Connections/mind.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  }

  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;   
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  }
  return $theValue;
}
}

mysql_select_db($database_mind, $mind);
$query_immagini = "SELECT * FROM 1_articoli";
$immagini = mysql_query($query_immagini, $mind) or die(mysql_error());
$row_immagini = mysql_fetch_assoc($immagini);
$totalRows_immagini = mysql_num_rows($immagini);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento senza titolo</title>
</head>

<body>
<?php do { ?>
    <p><a href="<?php echo $row_immagini['immagine_articoli']; ?>"><img name="" src="<?php echo $row_immagini['immagine_articoli']; ?>" alt="" /></a>
      <?php echo $row_immagini['immagine_articoli']; ?>
  </p>
    <p><?php echo $row_immagini['thumb_articoli']; ?></p>
    <p><a href="<?php echo $row_immagini['thumb_articoli']; ?>"><img name="" src="<?php echo $row_immagini['thumb_articoli']; ?>" alt="" /></a></p>
  <?php } while ($row_immagini = mysql_fetch_assoc($immagini)); ?>
</body>
</html>
<?php
mysql_free_result($immagini);
?>

Vi ringrazio anticipatamente per l'aiuto!
Marco
 
Ultima modifica:

Discussioni simili