///muestrafolio.php//////
<?php
include("conex.php");
include("myfunc.php");
$link=Conectarse();
$i_nombre=$_GET['nombre'];
$i_area=$_GET['area'];
$i_direcc=$_GET['direccion'];
$i_unidad=$_GET['unidad'];
$i_edificio=$_GET['edificio'];
$i_piso=$_GET['piso'];
$i_correo=$_GET['correo'];
$i_fono=$_GET['fono'];
$i_requerimiento=$_GET['requerimiento'];
$i_fecha=cambiaf_a_mysql($_GET['fecha']);
$i_hora=$_GET['hora'];
mysql_query("insert into tbl_maestra (nombre_usuario,area_usuario,direccion_usuario,depto_usuario,edificio,piso,correo_usuario,fono_anexo,tipo_requerimiento,fecha_solicitud,hora_solicitud) values ('$i_nombre','$i_area','$i_direcc','$i_unidad','$i_edificio','$i_piso','$i_correo','$i_fono','$i_requerimiento','$i_fecha','$i_hora')",$link);
$ultimo_id = mysql_insert_id($link);
?>
<?php
$link = mysql_connect("localhost", "root", "");
mysql_select_db("db_soporte", $link);
$sql = "SELECT * FROM tbl_edificio WHERE (des_edificio = '$i_edificio')";
$result = mysql_query($sql, $link);
$myrow = mysql_fetch_array($result);
$hora1=$myrow["tiempo"];
$hora2=$myrow["tiempo"];
$link = mysql_connect("localhost", "root", "");
mysql_select_db("db_soporte", $link);
$sql = "SELECT * FROM tbl_fallas WHERE (desc_falla = '$i_requerimiento')";
$result = mysql_query($sql, $link);
$myrow = mysql_fetch_array($result);
$hora3=$myrow["t_trabajo"];
$horades1=explode(':', $hora1);
$horades2=explode(':', $hora2);
$horades3=explode(':', $hora3);
$finalh=$horades1[0] + $horades2[0] + $horades3[0];
$finalm=$horades1[1] + $horades2[1] + $horades3[1];
$finals=$horades1[2] + $horades2[2] + $horades3[2];
if ($finals>59){
$finals=$finals - 60;
$finalm=$finalm + 1;
}
if ($finalm>59){
$finalm=$finalm - 60;
$finalh=$finalh + 1;
}
if (strlen($finalh)==1){
$finalh= "0".$finalh;
}
if (strlen($finalm)==1){
$finalm= "0".$finalm;
}
if (strlen($finals)==1){
$finals= "0".$finals;
}
$final_horas = $finalh.":".$finalm.":".$finals;
mysql_query("insert into tbl_temporal (folio,id_unidad,id_edificio,t_trabajo,total_trabajo) values ('$ultimo_id','$i_unidad','$hora1,'$hora3','$final_horas')",$link);
?>
<title>RESULTADO DE SOLICITUD</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="mm_entertainment.css" type="text/css" />
</head>
<body bgcolor="#14285f">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr bgcolor="02021e">
<td width="400" colspan="2" rowspan="2" nowrap="nowrap"><img src="Imagenes/bannerSoporte.jpg" alt="Header image" width="468" height="60" border="0" /></td>
<td width="360" height="58" nowrap="nowrap" id="logo" valign="bottom">NOMBRE DEL SITIO WEB</td>
<td width="100%"> </td>
</tr>
<tr bgcolor="02021E">
<td height="57" nowrap="nowrap" id="tagline" valign="top">Lema opcional</td>
<td width="100%"> </td>
</tr>
<tr>
<td colspan="4" bgcolor="#cc3300"><img src="Imagenes/mm_spacer.gif" alt="" width="1" height="2" border="0" /></td>
</tr>
<tr>
<td colspan="4"><img src="Imagenes/mm_spacer.gif" alt="" width="1" height="2" border="0" /></td>
</tr>
<tr>
<td colspan="4" bgcolor="#cc3300"><img src="Imagenes/mm_spacer.gif" alt="" width="1" height="1" border="0" /></td>
</tr>
<tr>
<td colspan="5" id="dateformat"> <br />
<a href="menu.php">VOLVER AL MENU PRINCIPAL </a><br /> </td>
</tr>
<tr>
<td width="50" valign="top"> </td>
<td colspan="2" valign="top"><br />
<table border="0" cellspacing="0" cellpadding="2" width="610">
<tr>
<td class="subHeader" colspan="3"><p style="margin-top: 0; margin-bottom: 0;">DETALLE DE REQUERIMIENTO </p> </td>
</tr>
<tr>
<td width="282" height="250" rowspan="2" align="center" class="subHeader"><img src="Imagenes/soporte-tecnico.jpg" alt="" width="264" height="264" border="0" /></td>
<td width="23" rowspan="2"> </td>
<td width="293" class="sidebarHeader">Requerimiento Solicitado <br />
<br /> </td>
</tr>
<tr>
<td valign="top" class="bodyText"><p>Su Nº de Requerimiento es:
<input name="folio" type="text" id="folio" value="<?php echo $ultimo_id ?>" readonly="true"/>
</p>
<p>El Tecnico Asignado es:</p>
<p>
<input name="tecnico" type="text" id="tecnico" readonly="true" />
</p>
<p>Su tiempo de espera es de:</p>
<p>
<input name="tiempo" type="text" id="tiempo" value="<?php echo $final_horas?>" readonly="true">
. </p></td>
</tr>
</table>
</td>
<td> </td>
</tr>
<tr>
<td width="50"> </td>
<td width="350"> </td>
<td width="360"> </td>
<td width="100%"> </td>
</tr>
</table>
<br />
</body>
</html>