I have multiple $_POST values which I want to store in an array to save to a text file. How would I go about doing this?
$_POST
PHP code:
// To save file_put_contents("file.txt", serialize($_POST)); // To get $array = unserialize(file_get_contents("file.txt"));
More Info: