Ciao a tutti, sto cercando di usare del codice php, per visualizzare i dati di una tabella , in una pagina html. Non funziona. Sembra non entrare nel codice php.
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="it" lang="it">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Atleti</title>
</head>
<body>
<CENTER>
<H1>Anagrafica</H1>
</CENTER>
<?php
echo "inizio";
$con = mysql_connect("localhost","xxxxx","xxxxxxx");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("my_xxxxx", $con);
$result = mysql_query ( "SELECT nome, cognome, via FROM anagrafica" )
or die( "SELECT Error: " . mysql_error ());
$num_rows = mysql_num_rows ( $result );
print "There are $num_rows records.<P>" ;
print "<table width=200 border=1>\n" ;
while ( $get_info = mysql_fetch_row ( $result )){
print "<tr>\n" ;
foreach ( $get_info as $field )
print "\t<td><font face=arial size=1/>$field</font></td>\n" ;
print "</tr>\n" ;
}
print "</table>\n" ;
?>
</body>
</html>
Mi visualizza soltanto : <H1>Anagrafica</H1> e niente altro, non mi fa neanche echo "inizio";
Ho provato anche con <?php session_start(); come prima istruzione del php.
Dove sbaglio?
Grazie.