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?
PHP code:
<?php
$name=$_POST["name"]
$email=$_POST["email"]
$msg=$_POST["msg"]
$origin=$_POST["origin"]
$file="test.txt";
$open=fopen($file,"a");
if($open){
fwrite($open, $entry);
fclose($open);
}
?>
$entry
is supposed to be the array
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…