This project allows users to submit their Name, Email, and Feedback through a simple web form. After clicking the submit button, the system displays a personalized message such as:
“Thank you Rahul! Your feedback has been submitted successfully.”
The submitted feedback is stored in a separate .txt file using PHP file handling without the need for a database.
✨ Features
💠User-friendly feedback form
💠Collects Name, Email, and Feedback
💠Displays personalized success message
💠Stores submissions in a .txt file
💠Uses POST method for secure input submission
💠Works without any database
💠Beginner-friendly project for PHP learners
🛠️ Technologies Used
💠HTML – Form structure
💠CSS – Styling and layout
💠PHP – Backend processing & file handling
💠TXT File – Feedback storage
📂 File Storage Example
The feedback is stored in a readable format such as:
Name: Rahul
Email: rahul@example.com
Feedback: Great work!
Each new entry gets appended to the file without removing previous data.