salve a tutti, possiedo la seguente pagina php che mi mostra i dati presenti in un database, ma vorrei che mi fosse visualizzata accanto al file presente la relativa icona del file caricato.
ringrazio tutti coloro che potranno aiutarmi

<?php require_once('Connections/r7.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$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;
}
}

$maxRows_Recordset1 = 10;
$pageNum_Recordset1 = 0;
if (isset($_GET['pageNum_Recordset1'])) {
$pageNum_Recordset1 = $_GET['pageNum_Recordset1'];
}
$startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1;

mysql_select_db($database_r7, $r7);
$query_Recordset1 = "SELECT * FROM `05_fatture`";
$query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
$Recordset1 = mysql_query($query_limit_Recordset1, $r7) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);

if (isset($_GET['totalRows_Recordset1'])) {
$totalRows_Recordset1 = $_GET['totalRows_Recordset1'];
} else {
$all_Recordset1 = mysql_query($query_Recordset1);
$totalRows_Recordset1 = mysql_num_rows($all_Recordset1);
}
$totalPages_Recordset1 = ceil($totalRows_Recordset1/$maxRows_Recordset1)-1;
?><!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>
<table border="1">
<tr>
<td>ID_FATTURE_EMESSE</td>
<td>COD_FATTURA</td>
<td>DATA_EMISSIONE</td>
<td>ALLEGATO</td>
<td>IMPORTO</td>
<td>STATO_FATTURA</td>
<td>AGENTE</td>
<td>SUB_AGENTE</td>
<td>LED</td>
<td>ID</td>
<td>CREATO_DA</td>
<td>DATA_CREAZIONE</td>
<td>ORA_CREAZIONE</td>
<td>MODIFICATO_DA</td>
<td>DATA_MODIFICA</td>
<td>ORA_MODIFICA</td>
<td>SOMMA</td>
</tr>
<?php do { ?>
<tr>
<td><?php echo $row_Recordset1['ID_FATTURE_EMESSE']; ?></td>
<td><?php echo $row_Recordset1['COD_FATTURA']; ?></td>
<td><?php echo $row_Recordset1['DATA_EMISSIONE']; ?></td>
<td><?php echo $row_Recordset1['ALLEGATO']; ?></td>
<td><?php echo $row_Recordset1['IMPORTO']; ?></td>
<td><?php echo $row_Recordset1['STATO_FATTURA']; ?></td>
<td><?php echo $row_Recordset1['AGENTE']; ?></td>
<td><?php echo $row_Recordset1['SUB_AGENTE']; ?></td>
<td><?php echo $row_Recordset1['LED']; ?></td>
<td><?php echo $row_Recordset1['ID']; ?></td>
<td><?php echo $row_Recordset1['CREATO_DA']; ?></td>
<td><?php echo $row_Recordset1['DATA_CREAZIONE']; ?></td>
<td><?php echo $row_Recordset1['ORA_CREAZIONE']; ?></td>
<td><?php echo $row_Recordset1['MODIFICATO_DA']; ?></td>
<td><?php echo $row_Recordset1['DATA_MODIFICA']; ?></td>
<td><?php echo $row_Recordset1['ORA_MODIFICA']; ?></td>
<td><?php echo $row_Recordset1['SOMMA']; ?></td>
</tr>
<?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
</table>
</body>
</html>
<?php
mysql_free_result($Recordset1);
?>