This survey system is written in PHP. It is small in size and footprint but it can handle alot.
This is what everyone wants to see first right? The user interface is very clean and modern. Eliminate distractions for users so they can focus on providing you better answers The backend panel allows you to view the results from a overall perspective. An email will be sent to you with every survey submission, but the results page allows you to view the overall results as your survey collects responses.The administration panel also allows you to add and edit questions on your survey. There are currently 6 different question types:
- Yes or No
- Text Box
- Paragraph
- Multiple Choice
- Expanded Multiple Choice
- Checkboxes
- Number Slider
- First, modify the
connect()
function insideclass/Connection.php
to contain your database credentials. ex.
function connect(){
return mysqli_connect(
'localhost', //Database server
'db_user', //Database user
'db_pass', //Database password
'db_name' //Database name
);
}
- Run
install.php
to complete the setup.
This is by no means a finished product. If you would like to help develop this survey there are most likely some issues or featured logged on Github. Feel free to suggest/implement your own features to fit your needs.