-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunivercidad.php
80 lines (36 loc) · 919 Bytes
/
univercidad.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
$conexion=mysql_connect("localhost","root","");
if (!$conexion) {
echo "ha ocurrido un error".mysql_error();
}
// preparar una peticion
mysql_query("CREATE DATABASE escuelavirtual",$conexion);
mysql_select_db("escuelavirtual",$conexion);
// ejecutar peticion
mysql_query("CREATE TABLE estudiantes (
numerodecarnet varchar(40) NOT NULL ,
nombres varchar(40) NOT NULL,
apellidos varchar(40),
materia varchar(40),
nivel int
)",$conexion);
mysql_query("CREATE TABLE material (
codmateria int NOT NULL ,
docente varchar(80) NOT NULL,
materia varchar(40),
material varchar(500),
tiempo_de_entrega varchar(40)
)",$conexion);
mysql_query("CREATE TABLE calificaciones (
codalumno int NOT NULL ,
alumno varchar(80) NOT NULL,
materia varchar(40),
nivel int,
nota1 double,
nota2 double,
notafinal double,
promedio double
)",$conexion);
//cerraremos
mysql_close($conexion);
?>