What am I missing here? This is my PHP file:
session_start(); echo print_r($_SESSION); echo \"\"; echo print_r($_POST); // Save input in sessio
i would instead foreach the $_POST and add it to $_SESSION['mypostvars']. Keep in mind that you should validate and verify the $_POST before storing them.
foreach
$_SESSION['mypostvars']
this is a possible duplicated of PHP merge $_POST into $_SESSION