Esto es lo que tengo esta es mi tabla
Código PHP:
me agrega la fila nueva, y enviar envía los datos a la base de datos, Ver original
<tr> <th scope="col" bgcolor="#999999"><strong>No.Analisis</strong></th> <th scope="col" bgcolor="#999999"><strong>Producto</strong></th> <th scope="col" bgcolor="#999999"><strong>Lote</strong></th> <th scope="col" bgcolor="#999999"><strong>Presentacion</strong></th> <th scope="col" bgcolor="#999999"><strong>Cliente</strong></th> <th scope="col" bgcolor="#999999"><strong>Cantidad</strong></th> <th scope="col" bgcolor="#999999"><strong>Forma Farmaceutica</strong></th> <th scope="col" bgcolor="#999999"><strong>Fecha Recepcion</strong></th> <th scope="col" bgcolor="#999999"><strong>Fecha Analisis</strong></th> <th scope="col" bgcolor="#999999"><strong>Fecha Resultados</strong></th> <th scope="col" bgcolor="#999999"><strong>Metodo</strong></th> <th scope="col" bgcolor="#999999"><strong>Formato</strong></th> <th scope="col" bgcolor="#999999"><strong>Codigo</strong></th> </tr> <?php require('Conexion.php'); $Consultica="Select * from `recuentomrexternos` order by `No.Analisis` LIMIT $inicio, $registros"; if($total_registros) { ?> <tr> <td><strong>MBE12-<input type="text" size="4" name="Analisis[]" value="<?php echo $filas2['No.Analisis']; ?>"/></strong></td> <td><input type="text" name="Producto[]" size="30"value="<?php echo $filas2['Producto']; ?>" /></td> <td><input type="text" name="Lote[]" size="9" value="<?php echo $filas2['No.Lote']; ?>"/></td> <td><input type="text" name="Presentacion[]" size="15" value="<?php echo $filas2['Presentacion']; ?>"/></td> <td><input type="text" name="Clientes[]" value="<?php echo $filas2['Clientes']; ?>"/></td> <td><input type="text" name="Cantidad[]" size="8" value="<?php echo $filas2['Cantidad']; ?>"/></td> <td><input type="text" name="Forma[]" value="<?php echo $filas2['FormaFarma']; ?>"/></td> <td><input type="text" name="FechaRecep[]" size="10" value=" <?php echo $filas2['FechaRecep']; ?>"/></td> <td><input type="text" name="FechaSiembra[]" size="8" value=" <?php echo $filas2['FechaSiembra']; ?>"/></td> <td><input type="text" name="FechaLectura[]" size="11" value=" <?php echo $filas2['FechaLectura']; ?>"/></td> <td><input type="text" name="Metodo[]" size="18" value="<?php echo $filas2['Metodo']; ?>"/></td> <td><input type="text" name="Formato[]" size="8" value=" <?php echo $filas2['Abreviatura']; ?>"/></td> </tr> <?php } ?> </table><br> <center> <input name="Agregar" type="button" value="Agregar" onClick="agregarUsuario()"> ¦ <input type="submit" value="Enviar" name="encabezado"/> </center>
Este el archivo que inserta
Código PHP:
pero necesito que me actualize segun el No.Analisis, que es un campo dinamico, para que la sentencia del update me tome el valor del campo dinamico en el que se encuentra el cursor. ayuda no se si fui claraVer original
$val_chkis = $_REQUEST['Anali']; foreach ($val_chkis as $key => $valll){ $sql= mysql_query("insert into `recuentomrexternos`(`No.Analisis`,`Producto`,`Clientes`,`FormaFarma`,`No.Lote`,`FechaRecep`, `FechaSiembra`,`FechaLectura`,`Metodo`,`Presentacion`,`Abreviatura`,`Cantidad`) values ('{$valll}','{$_REQUEST['Produc'][$key]}', '{$_REQUEST['Clien'][$key]}','{$_REQUEST['For'][$key]}','{$_REQUEST['Lot'][$key]}','{$_REQUEST['FechaRec'][$key]}' ,'{$_REQUEST['FechaAn'][$key]}','{$_REQUEST['FechaRes'][$key]}','{$_REQUEST['Meto'][$key]}','{$_REQUEST['Presen'][$key]}', '{$_REQUEST['Abre'][$key]}','{$_REQUEST['Canti'][$key]}')",$Conexion) or die("eRROR EN EL oPCIONeXTERNO ".mysql_error()); $insert2="insert into `confirmacion`(`Codigo`,`Analisis`,`Abreviatura`) values('{$_REQUEST['Codig'][$key]}','{$valll}','MBE')"; echo $sql;
Gracias por toda la ayuda