<table border="0" bgcolor="#EFEFEF" width="85%" cellspacing="0" cellpadding="2">
<tr>
<?php
// connettiamoci il nostro database
$db_host = "localhost";
$db_user = "iocreo";
$db_password = "xxx";
$db_name = "my_iocreo";
//connetto il database
$db = mysql_connect($db_host, $db_user, $db_password) or die ('Errore durante la connessione');
mysql_select_db($db_name, $db) or die ('Errore durante la selezione del db');
$sqlquery = "SELECT * FROM IoCreo WHERE TagRicerca LIKE '%%'";
$result = mysql_query($sqlquery);
$number = mysql_numrows($result);
$i = 0;
if ($number < 1) {
print "<center><p>La ricerca non ha prodotto nessun risultato</p></center>";
}
else {
while ($number > $i) {
$Nome = mysql_result($result,$i,"Nome");
$IMG= mysql_result($result,$i,"IMG");
$Scr= mysql_result($result,$i,"Scr");
// stampiamo i nostri dati
echo "<td align="center" width="46%" valign="top">";
echo "<a href=";
echo "$Scr";
echo ">";
echo "$IMG";
echo "</a>";
echo "</td>";
echo "<td align="center" width="53%">";
echo "<span style="font-weight: 700">";
echo "<font face="Verdana" style="font-size: 14pt">";
echo "<a href=";
echo "$Scr";
echo ">";
echo "$Nome";
echo "</font>";
echo "</a>";
echo "</td>";
$i++;
}
}
?>
</tr>
</table>