Sò che certi tag son vecchi ma stò solo cercando di sistemare ciò che il creatore non è riuscito a fare e a quanto pare neanch'io sò fare...
Posto il codice:
Pagina visualizzazione:
Codice PHP:
<div id="pagina">
<br/>
<div id="pagina_tabella_visualizza_altro">
<?
$nome_prodotto=$_GET['nome_prodotto'];
@include 'config.php';
$sql = "SELECT * FROM immagini WHERE nome_prodotto='$nome_prodotto'";
$result = @mysql_query($sql) or die (mysql_error ());
while ($row = @mysql_fetch_array($result)){
$id = $row['id'];
$descrizione = stripslashes($row['descrizione']);
$nome = $row['nome'];
/*$nome_prodotto = $row['nome_prodotto'];*/
$scheda_tecnica = stripslashes($row['scheda_tecnica']);
$verso_img = $row['verso_img'];
}
if ($verso_img==1){
$width=250; }
else {
$height=250;}
echo "
<table border=0 width=900>
<tr>
<td rowspan=2 height=160 width=335>";
if ($verso_img==1){
echo"
<img src=\"show.php?id=".$id."\" width=".$width.">";}
else {
echo"
<img src=\"show.php?id=".$id."\" height=".$height.">";}
echo"
</td>
<td height=100><FONT SIZE=\"5\" COLOR=\"#5f0307\" face=\"Arial, Helvetica\">".$nome_prodotto."</font></td>
</tr>
<tr>
<td height=170><FONT SIZE=\"2\" COLOR=\"#5f0307\" face=\"Arial, Helvetica\">".$scheda_tecnica."</a></td>
</tr>
<tr>
<td></td>
<td height=270><FONT SIZE=\"2\" COLOR=\"#5f0307\" face=\"Arial, Helvetica\">".$descrizione."</a></td>
</tr>
</table>
";
?>
</div>
pagina show.php
Codice PHP:
<?
if (isset($_GET['id']))
{
$id = @intval($_GET['id']);
@include 'config.php';
$sql = "SELECT id,type,immagine,descrizione,nome_prodotto,tipo,sottotipo, scheda_tecnica, verso_img FROM immagini WHERE id='$id'";
$result = @mysql_query($sql) or die(mysql_error ());
$row = @mysql_fetch_array($result);
$id_img = $row['id'];
$type = $row['type'];
$img = $row['immagine'];
$descrizione = $row['descrizione'];
$nome_prodotto = $row['nome_prodotto'];
$tipo = $row['tipo'];
$sottotipo = $row['sottotipo'];
$scheda_tecnica = $row['scheda_tecnica'];
$verso_img = $row['verso_img'];
if (!$id_img)
{
echo "Id sconosciuto";
}else{
@header ("Content-type: ".$type);
echo $img;
}
}else{
echo "Impossibile soddisfare la richiesta.";
}
?>
Grazie.