Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/02/2012, 02:00
Avatar de repara2
repara2
 
Fecha de Ingreso: septiembre-2010
Ubicación: München
Mensajes: 2.445
Antigüedad: 14 años, 2 meses
Puntos: 331
Respuesta: Array dinamico php

El segundo no lo guarda porque cada vez que envías el formulario se pierden los valores del array:


Código PHP:
Ver original
  1. <form name="form1" method="post"><input type="text" name="input"
  2.     id="input"> <input type="submit" name="submit" id="submit"></form>
  3.     <a href="?borrar">Borrar array</a><br>
  4. <?php
  5.  
  6. if(isset($_GET['borrar'])){
  7.     session_start();
  8.     header("Location: {$_SERVER['PHP_SELF']}");
  9. }
  10. if(isset($_POST['input'])) {
  11.  
  12.     session_start();
  13.     if(!isset($_SESSION['algo'])) $_SESSION['algo'] = array();
  14.     $_SESSION['algo'][]=$_POST['input'];
  15.     print_r($_SESSION['algo']);
  16. }
  17.  
  18. ?>
__________________
Fere libenter homines, id quod volunt, credunt.