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
You can modify $_SESSION but I don't think you're allowed to reassign it like that. Instead, copy the members of $_POST into it. Try using array_merge() but if that doesn't work then write a foreach loop to do it.