Hola tengo el siguiente input dinamico donde me recoge un concepto y un valor todo funciona bien pero necesito ayuda ya que quiero ingresar estos datos a un campo y a la vez extraerlos para consulta no se si es lo mas idóneo a un solo campo o varias campos
Código HTML:
Ver original<!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"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta content="jquery, forumlario dinamico, tutorial" name="keywords"/>
<script type="text/javascript" src="js/jquery.min.js"></script> <script type="text/javascript" src="js/jquery.addfield2.js"></script>
<div id="stylized" class="myform" style="margin:20px auto;"> <form id="form" name="form" method="post" action="procesar.php">
<div id="material_comprado"> </div>
<h1>Campos Din
ámico
</h1>
<input type="text" name="concepto[]" id="concepto" style="width:200px;" /> <br> <input type="text" name="valor[]" id="valor" style="width:200px;" /> <input class="bt_plus" id="1" type="button" value="+" /><div class="error_form">
y aqui se hace el proceso
Código PHP:
Ver original<?php
$FirstArray = ($_POST['concepto']);
$SecondArray = ($_POST['valor']);
echo "Concepto".var_dump($FirstArray)."<br>"; echo "Valor".var_dump($SecondArray)."<br>";
foreach($FirstArray as $index => $value) {
echo "$FirstArray[$index]<br>";
echo "$SecondArray[$index]<br>";
}
?>
Gracias por su ayuda