<?php
 include "conecta_mysql.inc";


  $sqli="create table seriesedom2009(nome char(80) not null, matricula int(8) not null primary key, Nota1 float (3,1), Nota2 float (3,1), Nota3 float (3,1), 
MediaP float (3,1), PFinal float (3,1), MediaF float (3,1), Falta int(2), NotaPF float (3,1), Situacao char(80) not null)";
  $resi=mysql_query($sqli,$conexao); 

 echo "Tabelas inseridas com sucesso!";

mysql_close($conexao);
?>