<?php
 include "conecta_mysql.inc";


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

 echo "Tabelas inseridas com sucesso!";

mysql_close($conexao);
?>