Código PHP:
   <?php
require_once 'constantes.php';
require_once 'bd.php';
 
open();
 
?>  
<TABLE border="2">
<tr>
 <th>Imagen</th>
<th>id</th>
<th>nombre</th>
<th>descripcion</th>
</tr>
<?php
$result = mysql_db_query("pruebas","select * from categorias");
while($row = mysql_fetch_array($result)) {
    
    // Lo muestra todo menos el puñetero gráfico!!
   echo '<tr><td>'.$row['<img src="grafico">'].'</td>';
   echo '<td>'.$row['id'].'</td>';
   echo '<td>'.$row['nombre'].'</td>';
   echo '<td>'.$row['descripcion'].'</td></tr>';
}
mysql_free_result($result);
 
 
?>
</TABLE>   
 
 
