1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
-
- require_once 'processes/dbh.inc.php';
-
- include("funciones.php");
-
-
-
- function stddev($arr) {
-
- $num_of_elements = count(array_filter($arr, function($x) { return is_numeric($x); }));
-
- $variance = 0.0;
-
-
- $average = average($arr);
-
- foreach($arr as $i) {
-
-
- $variance += pow(($i - $average), 2);
- }
-
- return (float)sqrt($variance / $num_of_elements);
- }
-
-
-
- function average($valores) {
-
-
- return array_sum(array_filter($valores, function($x) { return is_numeric($x); })) / count(array_filter($valores, function($x) { return is_numeric($x); }));
- }
-
-
-
- function porcientoCambio($primero, $segundo) {
- if(is_numeric($primero) and is_numeric($segundo)) {
- return 100.0 * ($segundo - $primero) / $primero;
- }
-
- }
-
-
-
- function siDecimal2($numero) {
- if(is_numeric($numero)) {
- $numero = sprintf("%.2f", $numero);
- $numero = rtrim($numero, "0");
- $numero = rtrim($numero, ".");
- return $numero;
- }
- }
-
-
-
- $id_experiencia = mysqli_real_escape_string($connection, trim($_POST['id_exp']));
- $id_student = mysqli_real_escape_string($connection, trim($_POST['id_student']));
- $res_type = mysqli_real_escape_string($connection, trim($_POST['res_type']));
-
-
-
- if($res_type == 0) {
- include "siPreguntas.php";
- }
- elseif($res_type == 1) {
- include "siSubCategoria.php";
- }
- elseif($res_type == 2) {
- include "siCategoria.php";
- }
-
-
-
- foreach($preguntas as $id => $pregunta) {
- print "<tr>";
- foreach($pregunta as $item) {
- print '<td style="vertical-align: middle; text-align: center;">'.$item.'</td>';
- }
- print "</tr>";
- }
-
- ?>
|