Codice PHP:
<?php
$testo 
$_POST['nome'];
$sql "SELECT Immagine FROM tabella1 WHERE Nome LIKE '$testo' LIMIT 0, 30";
$result mysql_query($sql);
while(
$row mysql_fetch_array($result)) {

        echo 
$row['Immagine'];


?>