+ 1
Making a custom quiz
Hi, I am working on a project right now and I want to be able to make a format for people to create their own quiz when they visit my website. I don’t know where to start or what method to use. Am I suppose to use php and js and HTML to store inputs from users into the php? Thanks
2 Respostas
+ 8
This free udemy course covers the creation of a quiz app using JS, HTML and CSS
https://www.udemy.com/course/build-a-quiz-app-with-html-css-and-javascript/
What it lacks is the ability to create and upload your own quiz questions, but this looks like a good place to start.
After having the quiz infrastructure ready, adding an additional form that allow you to upload questions shouldn't be very hard.
You can use services such as firebase to store the questions instead of using the local JSON (the usage of JSON is covered in the course).
here are some additional firebase tutorials:
https://youtu.be/Se5E4PbOZHc
https://softauthor.com/learn-to-build-firebase-crud-app-with-javascript-part01-reading-data
https://dev.to/johndavemanuel/firebase-crud-1edn
that should cover most of what you need
+ 1
thanks so much! appreciate all the help