Salve a tutti :) ho un problemino coìn un codice php….
questo codice mi genera questo errore: impossibile CONNETTERSI al server: Access denied for user 'apache'@'localhost' (using password: NO)Codice PHP:
$test = 0;
while ($test < 3) {
$i=0;
$rigaArrayRicerca = mysql_fetch_array($result);
echo "<tr align='center' valign='middle'>";
$larghezza= "300";
$foto=$rigaArrayRicerca[url];
$foto_originale="<a target='_blank' href='../immagini/mano/".$foto."' >";
while ($i<4){
echo "<td>";
echo $foto_originale; echo "<img src='../immagini/mano/".$foto."' width=".$larghezza.">";
echo "</td>";
$i++;
}
echo "</tr>";
$test++;
}
quest'altro codice (praticamente identico caricato nella stessa pagina) non mi dà l'errore…potete dirmi cos'è?
Codice PHP:
$test = 0;
while ($test < 3) {
$rigaArrayRicerca = mysql_fetch_array($result);
echo "<tr align='center' valign='middle'>";
$larghezza= "300";
$foto=$rigaArrayRicerca[url];
$foto_originale="<a target='_blank' href='../immagini/mano/".$foto."' >";
echo "<td>";
echo $foto_originale; echo "<img src='../immagini/mano/".$foto."' width=".$larghezza.">";
echo "</td>";
echo "</tr>";
$test++;
}
break;