Descrizione? :master:Originariamente inviato da casual
Grazie per la risposta!
Ora non mi da errore, ma mi scrive soltanto "Descrizione:" ma non mi mette nulla dopo, quindi neanche il link.
<html>
<head>
<title>.:.:Titolo:.:.</title>
</head>
<body>
<?php
$Host = "localhost";
$User = "nome";
$Password = "pass";
$DBName = "nome_database";
$TableName = "Links";
mysql_connect($Host, $User, $Password);
mysql_select_db($DBName); //si connette al database
$Query = "SELECT * from $TableName where ParoleChiavi = 'parola';
$Result = mysql_query($Query);
while ($Row = mysql_fetch_array ($Result)) {
print_r(Row); //stampa l'array $row
print "
";
}
mysql_close ($Link);
?>
</body>
</html>
Vedi come va...