How I can make PHP create a file for each order named whatever the person enters there name into the field
<?php
Name: php echo $_POST["Firstname"];
php echo $_POST["Lastname"]; <br /> <br />
Dorm Name: php echo $_POST["DormName"]; <br />
Room Number: php echo $_POST["RoomNumber"]; <br />
Pizza Type php echo $_POST["PizzaType"]; <br />
?>
This is what i have so far but I need a function that will make a file for each submission and name it the persons name.
your PHP should look something like this…
Note: If another person with the same name orders again, it will all just append to the bottom of the same file.
Cheers