Il primo esempio è completo, basta che metti la connessione ed è fatta
Codice PHP:
<?php
$db_host = "localhost";
$db_name = "my_Revolunderground";
$db_pass = "";
$db_user = "Revolunderground";
$db = mysql_connect($db_host,$db_user,$db_pass) or
die("E' stato riscontrato il seguente errore durante la connessione al database: ". mysql_error());
mysql_select_db($db_name,$db) or
die("Errore nella selezione del database <b>".$db_name."</b> controlla che il database sia corretto");
$q = "SELECT * FROM locali ORDER BY nome";
$out = "<table>
<tr><th>Nome</th><th>Luogo</th><th>Via</th><th>Telefono</th><tr>";
$r = mysql_query($q, db);
while($row = mysql_fetch_array($r))
$out.= "<tr>
<td>".$row['nome']."</td>
<td>".$row['luogo']."</td>
<td>".$row['via']."</td>
<td>".$row['telefono']."</td>
</tr>":
$out.="</table>";
mysql_close($db);
echo $out;
?>
l'altro pure.. due o tre modifiche
Codice PHP:
<?php
$db_host = "localhost";
$db_name = "my_Revolunderground";
$db_pass = "";
$db_user = "Revolunderground";
$db = mysql_connect($db_host,$db_user,$db_pass) or
die("E' stato riscontrato il seguente errore durante la connessione al database: ". mysql_error());
mysql_select_db($db_name,$db) or
die("Errore nella selezione del database <b>".$db_name."</b> controlla che il database sia corretto");
if(empty($_GET['name'])) {
$q = "SELECT * FROM band ORDER BY nome";
$r = mysql_query($q,$db);
$out = "Seleziona la band di cui vuoi sapere info: <br/>";
while($row = mysql_fetch_array($r))
$out.="<a href=\"?nome=".$row['nome']."\">".$row['nome']."<br/>";
echo $out;
} else {
$nome = mysql_real_escape_string($_GET['name']);
$q = "SELECT * FROM band WHERE nome='".$nome."'";
$row = mysql_fetch_array(mysql_query($q,$db));
if($r) {
echo "Nome: ".$row['nome']."<br/>";
//e gli altri campi... seguendo la sintassi $row['nomecampo']
}else echo "Band inesistente";
}
?>