Ver Mensaje Individual
  #5 (permalink)  
Antiguo 15/06/2012, 22:03
Montes28
 
Fecha de Ingreso: septiembre-2010
Mensajes: 1.853
Antigüedad: 14 años, 2 meses
Puntos: 6
Respuesta: enviar n datos mediante ajax

en el div padre (insert , tengo mas dos div mas )

este con el alert no me aparecen todos los id de los elementos que necesito enviar por ajax a la base de datos

<div id="insert">
<div class="columnas" id="col_1">
<form/>
<label for="name">Nombre</label>
<input type="text" name="name" id="name" class="text ui-widget-content ui-corner-all" />
<label for="email">Email</label>
<input type="text" name="email" id="email" value="" class="text ui-widget-content ui-corner-all" />
<label for="telefono1">Telefono 1</label>
<input type="text" name="telefono1" id="telefono1" value="" class="text ui-widget-content ui-corner-all" />
<label for="telefono2">Telefono 2</label>
<input type="text" name="telefono2" id="telefono2" value="" class="text ui-widget-content ui-corner-all" />
<label for="fax">Fax</label>
<input type="text" name="fax" id="fax" value="" class="text ui-widget-content ui-corner-all" />
<label for="web">Web</label>
<input type="text" name="web" id="web" value="" class="text ui-widget-content ui-corner-all" />
<label for="speedC">Categoria</label>
<p>
<select name="categoria" id="categoria">
<option value="1">Seleccione...</option>
<?php
foreach($fc as $field)
{
echo "<option value='$field[id_categoria]'>$field[nombre_cat]</option>";
}
?>
</select>
</p>


</div>
<div class="columnas" id="col_2"> </br>
</br>
<label for="publicaciones">Publicaciones</label>
<!--<table width="400" border="0" class="ui-widget ui-widget-content" id="users">
<tr class="ui-widget-header">
<td>
<div align="right">
<input type="checkbox" name="checkbox" value="checkbox" />
</div>

</td>
</tr>
</table>-->
<?
$volcan=0;

foreach($fp as $field)
{
if($volcan != $field['cod_volcan']) {?>
<table width="400" border="0" class="ui-widget ui-widget-content" id="users">
<tr class="ui-widget-header ">
<td colspan="2"><div align="center"><? echo $field['nom_volcan']; ?></div></td>
</tr>
<?

$volcan = $field['cod_volcan'];
}?>
<tr>
<td width="95%"><? echo $field['nom_publicacion'];?> </td>
<td width="5%"><div class="ui-checkbox">
<input name="checkbox" type="checkbox" id="theid" />
</div></td>
</tr>
<?
}
?>
</table>
<br />
<br />
<label for="observaciones">Comentario</label>
<textarea name="comentario" id="comentario" cols="74" rows="3" class="required ui-widget ui-widget-content ui-corner-all"></textarea>
</form>
</div>

</div>