posta, aajjaa media hora buscando el error, que el while, que el array.
saludos!
PD: a mejorar el code
saludos!
PD: a mejorar el code
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú<?php
require("conexion.php");
$consulta="SELECT MAX(id) FROM info_sitios";
$consulta2="SELECT id FROM info_sitios";
$con = mysql_query($consulta, $conexion);
$con2 = mysql_query($consulta2, $conexion);
$tot = mysql_fetch_array($con);
$tot2 = mysql_fetch_array($con2);
echo $tot2[0] . "<br />";
while ($tot=$tot2){
$tot2 = mysql_fetch_array($con2);
$consulta3 = "SELECT sitio FROM info_sitios WHERE id = '".$tot2["0"]."'");
$con3 = mysql_query($consulta3, $conexion);
$tot3 = mysql_fetch_array($con3);
echo $tot2[0] . "<br />";
echo $tot3;
$tot2++;
}
?>
$consulta3 = "SELECT sitio FROM info_sitios WHERE id = '".$tot2[0]."'");
<?Php
$servidor = "localhost";
$usuario_bd = "root";
$password_bd = "";
$basedatos = "empresa";
$conexion = mysql_connect($servidor,$usuario_bd,$password_bd);
if (!$conexion)
{
echo "Error conectando a la base de datos.";
exit();
}
$resultado=mysql_select_db($basedatos,$conexion);
if (!$resultado)
{
echo "Error seleccionando la base de datos.";
exit();
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Mantenimientos y Servicios</title>
<style type="text/css">
.style2 {
background-color: #3366CC;
}
</style>
</head>
<body>
<div id="layer1" style="position: absolute; width: 459px; height: 427px; z-index: 1; left: 10px; top: 15px; visibility: visible;" class="style2">
<form method="post" action="mantyserv.php" style="height: 206px">
<h1 align="center">Mantenimiento y Servicios</h1>
<table style="width: 93%; height: 147px;">
<tr>
<td style="width: 148px; height: 45px;">Código</td>
<td style="height: 45px">
<select name="sel_vend" id="sel_vend" style="width: 140px">
<?php
$cod_ve = array();
$cod_vn = array();
// $c = 0;
$consulta= "SELECT * FROM empleados ";
$resultado = mysql_query($consulta) or die('La consulta falló: ' . mysql_error());
while($linea = mysql_fetch_array($resultado)){
echo " <option value=\"".$linea[0]."\">".$linea[1]."</option>\n";
}
?>
</select> </td>
</tr>
<tr>
<td style="width: 148px; height: 45px;">Tipo de Mantenimiento</td>
<td style="height: 45px"><select multiple name ="tmant" style="width: 133px">
<option>Limpieza</option>
<option>Completo</option>
<option>Sistema</option>
<option>Otro</option>
</select></td>
</tr>
<tr>
<td style="width: 148px">Asignar Técnico</td>
<td>
<select name="sel_vend" id="sel_vend2" style="width: 133px; height: 18px;">
<?php
$cod_ve = array();
$cod_vn = array();
// $c = 0;
$consulta= "SELECT * FROM empleados where cargo='Tecnico'";
$resultado = mysql_query($consulta) or die('La consulta falló: ' . mysql_error());
while($linea = mysql_fetch_array($resultado)){
echo " <option value=\"".$linea[0]."\">".$linea[4]."</option>\n";
}
?>
</select>
</td>
</tr>
<tr>
<td style="width: 148px">Valor Asignado $</td>
<td><input name="valor" style="width: 133px" type="text" /></td>
</tr>
</table>
<p>Ingrese sus dudas o Notas</p>
<textarea name="notes" style="width: 404px; height: 69px"></textarea>
<input name="Submit1" type="submit" value="Enviar" />
<input name="Reset1" type="reset" value="Limpiar Campos" />
</form>
</div>
</body>
</html>
<?php
$conexion=mysql_connect("localhost","root","") or die("ha ocurrido un error en la conexion");
mysql_select_db("empresa",$conexion) or die("no se ha podido seleccionar la base de datos");
mysql_query("insert into mantyserv(sel_vend,tmant,sel_vend2,valor,notes) values('$_REQUEST[sel_vend]','$_REQUEST[tmant]','$_REQUEST[sel_vend2]','$_REQUEST[valor]','$_REQUEST[notes]')", $conexion) or die ("error al registrar datos");
mysql_close();
echo "<h1>Registro de Datos</h1>";
printf("volver");
printf("<a href= inicio.php>Volver al Inicio</a>");
?>