Well, I created a database in PhpMyAdmin
with name students a table called information and put the data in it ...
Then I added it to my site when I add the code appears instead of the table information ...
Here is my code below:
< ?php
$tabela = msql_query("SELECT * FROM 'informacoes'") ;
while($resultado = mysql_fetch_array($tabela)){
}
$host = "localhost";
$bd = "alunos";
$user = "root";
$senha = "";
$conexao = mysql_connect ($host, $user, $senha) or die (mysq_error());
mysql_select_db($bd, $conexao);
echo"informacoes $alunoid<br />$nome<br />$email<br />$turno<br />$UF<br />";
? >