-
Notifications
You must be signed in to change notification settings - Fork 0
/
crearCuestionario.php
166 lines (142 loc) · 7.13 KB
/
crearCuestionario.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<html>
<?php $title = 'Crear Cuestionario'; ?>
<?php $currentPage = 'crearCuestionario'; ?>
<?php include('head.php'); ?>
<?php include('nav-bar.php'); ?>
<?php include('conexion.php'); ?>
<?php
error_reporting(E_ALL ^ E_NOTICE);
session_start();
$usuario = $_SESSION['username'];
if(isset($_POST["pregunta1"])){
$asignatura = $_POST["asignatura"];
$pregAgre1 = $_POST["pregunta1"];
$pregAgre2 = $_POST["pregunta2"];
$pregAgre3 = $_POST["pregunta3"];
$seccion = $_POST["codseccion"];
$numRandom ="SELECT LPAD(FLOOR(RAND() * 999999.99), 6, '0') FROM DUAL";
$insertar ="INSERT INTO encuesta (codigo_encuesta,id_clasefk,seccion,pregunta1,pregunta2,pregunta3,dia_encuesta,hora_encuesta,id_profesorfk)
VALUES (FLOOR(1+ RAND() * 999999),'$asignatura','$seccion','$pregAgre1','$pregAgre2','$pregAgre3',curdate(),curtime(),'$usuario')";
$con->query($insertar);
}
?>
<?php
?>
<body>
<div class="container-md d-flex justify-content-center" style="background-color:white" text-center py-5>
<button onclick="history.go(-2);" id="Enviar" style="font-size: 25px">Volver </button>
</div>
<br>
<div class="container-md d-flex justify-content-center" style="background-color:white" text-center py-5>
<form action="crearCuestionario.php" method="POST" id="formCuestionario" class="form-md">
<div class="form-group col-12 col-lg-6">
<td>Asignatura:</td>
<select name="asignatura" class="form-select form-select-lg mb-1" id="SelectPregunta" required>
<option selected hidden value="" required>Indique la asignatura</option>
<?php
$result = $con->query("select * FROM asignatura ORDER BY nombre_Asignatura ASC");
while ($row = $result->fetch_assoc())
{
echo "<option required value='".$row['id_asignatura']."'>".$row['nombre_asignatura']." </option>";
}
?>
</select>
</td>
</div>
<div class="form-group col-12 col-lg-6">
<td>
<td>Sección:</td>
<input type="text" name="codseccion" placeholder="Indique su sección" required>
</td>
</div>
<div class="form-group col-12 col-lg-6">
<td>Pregunta N°1:</td>
<select name="pregunta1" class="form-select form-select-lg" id="SelectPregunta" required>
<option selected hidden value="" required>Seleccione la pregunta</option>
<?php
$result = $con->query("select * FROM preguntas_predeterminadas");
while ($row = $result->fetch_assoc())
{
echo "<option required value='".$row['nombre_pregunta']."'>".$row['nombre_pregunta']." </option>";
}
?>
</select>
</td>
</div>
<div class="form-group col-12 col-lg-6">
<td>Pregunta N°2:</td>
<select name="pregunta2" id="SelectPregunta" required>
<option selected hidden value="" required>Seleccione la pregunta</option>
<?php
$result = $con->query("select * FROM preguntas_predeterminadas");
while ($row = $result->fetch_assoc())
{
echo "<option required value='".$row['nombre_pregunta']."'>".$row['nombre_pregunta']." </option>";
}
?>
</select>
</td>
</div>
<div class="form-group col-12 col-lg-6">
<td>Pregunta N°3:</td>
<select name="pregunta3" id="SelectPregunta" required>
<option selected hidden value="" required>Seleccione la pregunta</option>
<?php
$result = $con->query("select * FROM preguntas_predeterminadas");
while ($row = $result->fetch_assoc())
{
echo "<option required value='".$row['nombre_pregunta']."'>".$row['nombre_pregunta']." </option>";
}
?>
</select>
</td>
</div>
<br>
<br>
<script>
function aviso() {
alert("La encuesta fue creada exitosamente");
}
</script>
<div class="text-center">
<button id="Enviar" type="submit" onclick="aviso()" value="add">Agregar Encuesta</button>
</div>
</form>
</div>
</div>
<div class="form-group col-12 col-lg-6">
<table id="tablaUsuarios" class="table-striped table-bordered" style="width:100%">
<thead class="text-center">
<th>Codigo Encuesta</th>
<th>Asignatura </th>
<th>Sección</th>
<th>Responsable</th>
</thead>
<tbody>
<?php
$sql ="SELECT en.codigo_encuesta as codigo,
asi.nombre_Asignatura as asig,
en.seccion as seccion,
en.id_profesorfk as pro
FROM encuesta en
join asignatura asi on asi.id_asignatura = en.id_clasefk
WHERE en.id_profesorfk = '$usuario' and en.dia_encuesta = CURDATE()";
$result = mysqli_query($con,$sql);
while($usuario=mysqli_fetch_array($result))
{
?>
<br>
<tr>
<td><?php echo $usuario['codigo']?></td>
<td><?php echo $usuario['asig']?></td>
<td><?php echo $usuario['seccion']?></td>
<td><?php echo $usuario['pro']?></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</body>
</html>