Ver Mensaje Individual
  #10 (permalink)  
Antiguo 27/07/2009, 12:09
lauchalp95
 
Fecha de Ingreso: julio-2006
Mensajes: 254
Antigüedad: 18 años, 4 meses
Puntos: 0
Respuesta: Problema con suma!

Código PHP:
Ver original
  1. <form action="<?php echo $editFormAction; ?>" method="post" name="form1" target="ag" id="form1">
  2.             <p>Usuario:
  3.               <label>
  4.               <input type="text" name="usuarioagre" id="usuarioagre" />
  5.               </label>
  6.             (¡ESCRIBIR BIEN, POR FAVOR!)</p>
  7.             <p>Puntos a agregar:
  8.               <input type="text" name="puntosagre" id="puntosagre" />
  9.             (¡ESCRIBIR BIEN, POR FAVOR!)</p>
  10.             <p>
  11.               <label></label>
  12.             </p>
  13.             <p>
  14.               <label>
  15.               <input type="submit" name="button" id="button" value="Enviar" />
  16.               </label>
  17.             </p>
  18.             <input type="hidden" name="MM_update" value="form1" />
  19.     </form>
Arreglado, nuevo codigo:
Código PHP:
Ver original
  1. <form action="<?php echo $editFormAction; ?>" method="post" name="form1" target="ag" id="form1">
  2.             <p>Usuario:
  3.               <label>
  4.               <input type="text" name="usuarioagre" id="usuarioagre" />
  5.               </label>
  6.             (¡ESCRIBIR BIEN, POR FAVOR!)</p>
  7.             <p>Puntos a agregar:
  8.  <label>
  9.               <input type="text" name="puntosagre" id="puntosagre" />
  10. </label>
  11.             (¡ESCRIBIR BIEN, POR FAVOR!)</p>
  12.             <p>
  13.              
  14.             </p>
  15.             <p>
  16.               <label>
  17.               <input type="submit" name="button" id="button" value="Enviar" />
  18.               </label>
  19.             </p>
  20.             <input type="hidden" name="MM_update" value="form1" />
  21.     </form>

Aún así, el var dump de el post de puntos, sigue siendo NULL

Pd.: No se preocupen por el nombre de los campos, los acabo de cambiar.

Última edición por lauchalp95; 27/07/2009 a las 12:15