I have 3 files
File 1 is a html form which uses the post method
File 2 is a php script which processes file 1's form results
File 3 is called by file 2 using header("Location: File3.php");
Ok imagine if the user typed "chocolate" into one of the field's in the form
in file 2 the value "chocolate" and can be accessed by referencing $_POST["food"]
File 2 calls file 3 and file 3 references $_POST["food"] but in file 3 $_POST["food"] is NULL
So I ask the question
How can I pass the value of "chocolate" to file 3 using $_POST["food"] in a secure way?