Ver Mensaje Individual
  #7 (permalink)  
Antiguo 26/10/2013, 13:35
AL343
 
Fecha de Ingreso: octubre-2013
Ubicación: Alicante- ESPAÑA
Mensajes: 7
Antigüedad: 11 años, 1 mes
Puntos: 0
Respuesta: PHP- Variables de sesion

Cita:
Iniciado por SkAr88 Ver Mensaje
Muestras el codigo del formulario y donde recibes los datos, si quieres que te ayuden, pon los codigos, ya que no somos adivinos.

aniadir.php

<?php
include('head.php');
include('menu.php');

$mostrar='
<form action="aniadir2.php" method="post"> <BR>

<table align="center" border="1">
<tr>
<td>Nombre:</td><td><input type="text" name=nombre></td>
</tr>
<tr>
<td>Apellidos:</td><td><input type="text" name=apellidos></td>
</tr>
<tr>
<td>Teléfono:</td><td><input type="text" name=telefono></td>
</tr>
<tr>
<td>Curso:</td><td><input type="text" name=curso></td>
</tr>
<tr>
</tr>
<tr>
<td>Madre:</td><td><input type="text" name=madre></td>
</tr>
<tr>
</tr>
<tr>
<td>Padre:</td><td><input type="text" name=padre></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name ="añadir" value="añadir"></td>
</tr>
</table>
</form>
';
echo $mostrar;



[COLOR="rgb(154, 205, 50)"]Anadir2[/COLOR]

include('head.php');
include('menu.php');
session_start();
if (isset($_POST['añadir'])){

$nombre=$_POST['nombre'];
$apellidos=$_POST['apellidos'];
$telefono=$_POST['telefono'];
$curso=$_POST['curso'];
$madre=$_POST['madre'];
$padre=$_POST['padre'];

$alumnos=array(array('Nombre'=>'A', 'Apellidos'=>'A', 'Telefono'=>'A', 'Curso'=>'A', 'Madre'=>'A', 'Padre'=>'B'),
array('Nombre'=>'B', 'Apellidos'=>'B', 'Telefono'=>'B', 'Curso'=>'B','Madre'=>'A', 'Padre'=>'B'));

$alumnos[]=array('Nombre'=> $nombre,'Apellidos'=>$apellidos, 'Telefono'=>$telefono, 'Curso'=>$curso,'Madre'=>$madre, 'Padre'=>$padre);



$_SESSION['alumnos'][]=$alumnos;

echo' <H3> ALUMNO CORRECTO </H3>';


};

[COLOR="rgb(154, 205, 50)"]mostrar[/COLOR]

include('head.php');
include('menu.php');
session_start();

$al=$_SESSION['alumnos'];
print_r ($al);