<?php
session_start();

$_SESSION[$_POST['email']] = $_POST['name'];
header("location:test.php");

?>