este es el codigo de el formulario que muestra unas actividades previamente programadas
junto con alguno datos extra que debe diligenciar el usuario, resalto que tiene alguno problemas de identacion, pero es totalmente funcional.
Código PHP:
Ver original<?php
include("../../conexion.php");
include("fechas.php");
if (!$_SESSION['id_usuario']){
echo '<script language = javascript>
alert("usuario no autenticado")
self.location = "../../index.html"
</script>';
}
if(isset($_POST["ordenes"])){ echo '<input type="hidden" name="idw" value="'.$_POST["ordenes"].'" />';
$id_ord = $_POST["ordenes"];
}
else{
echo '<input type="hidden" name="idw" value="'.$_GET["id_Work"].'" />';
$id_ord = $_GET["id_Work"];
}
$fechaEnCurso=$_GET["var"];
}
?>
<html>
<head>
<script>
function aviso(){
var pres=confirm("Esta seguro de pasar al siguiente paso");
if (pres){
document.inicio.action="procesa_informe_diario.php";
document.inicio.submit();
}
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=gb18030" />
<title>Control de obra | LETINGEL S.A.S</title>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<style type="text/css">
.auto-style1 {
margin-top: 0px;
}</style>
</head>
<div id="main_container">
<div id="header">
<div class="logo"></div>
<div id="menu">
<ul>
<li><a class="tooltip" href="residente.php" title=""><img src="images/icon1.gif" border="0" alt="" title="" /><span>Inicio</span></a></li>
<li><a class="tooltip" href="soporte.html" title=""><img src="images/icon4.gif" border="0" alt="" title="" /><span>Soporte</span></a></li></ul></div></div>
<div class="subheader_content">
<div class="subheader_text">CONTROL DE OBRA | LETINGEL S.A.S</div></div>
<div id="center_content">
<div align="center"><h1>Informe Diario</h1></div>
<div class="left_content">
<div class="inner_copy"></div>
<div align="center"><h1>Actividades</h1></div><br>
<form name="inicio" method="post" onsubmit="return aviso()" action="">
<?php
echo '<input type="hidden" name="idw" value="'.$id_ord.'" />';
$sql1 = mysql_query ("SELECT * FROM dias_actv WHERE fecha = '$fechaEnCurso'"); echo "<hr>";
echo "<table align=center>
<tr>
<td ALIGN=CENTER>Item</td>
<td ALIGN=CENTER></td>
<td ALIGN=CENTER></td>
<td ALIGN=CENTER>Actividad</td>
<td ALIGN=CENTER></td>
<td ALIGN=CENTER></td>
<td ALIGN=CENTER>Programado</td>
<td ALIGN=CENTER></td>
<td ALIGN=CENTER></td>
<td ALIGN=CENTER>Realizado</td>
</tr>";
$id_ac=$row['id_actv'];
echo "<tr>
<td ALIGN=CENTER>".$actv['id_act']."</td>
<td ALIGN=CENTER></td>
<td ALIGN=CENTER></td>
<td ALIGN=left title=".$actv['Descripcion'].">".$actv['Descripcion']."</td>
<td ALIGN=CENTER></td>
<td ALIGN=CENTER></td>
<td ALIGN=center>".$row['cantidad']."</td>
<td ALIGN=CENTER></td>
<td ALIGN=CENTER></td>
<td ALIGN=CENTER><input type='text' name='cantidad' size='3' required></td>
</tr>";
}
echo "</table>";
?>
</body>
</html>