This is a simple project written in PHP that allows users to provide feedback about the PHP language. The feedback is stored in a MySQL database and can be viewed on a separate page called "History".
To run this project, you must have the following installed on your machine:
- PHP
- XAMPP (Apache server + MySQL)
- Clone this repository into the
htdocs
directory of your XAMPP installation:git clone https://github.com/bratuchedot/plain-php.git
- Start the Apache and MySQL servers in XAMPP.
- Create a new MySQL database called
php_plain
. Then create new tablefeedback
with 5 columns (id, name, email, body, date). Create new local user (check /config/database.php file for credentials) and grant all privileges. - Open your web browser and navigate to
http://localhost/plain-php/
to view the feedback app.
To use the PHP feedback form, simply enter your feedback in the text box and click the "Send" button. Your feedback will be saved to the feedback table in the MySQL database. To view the saved feedback, click the "History" link in the navigation bar. This will take you to a page that displays all of the saved feedback, along with the date and time that it was submitted.
This project is not licensed and is available for use without any restrictions.