help me guys on my project in school. I want to generate checkbox based on my data in MySQL.
For example... in STUDENT table, the data are: Daniel, Jam, Minho, James, Paul.
I want to make checkboxes based on the contents of the STUDENT table.
[ ] Daniel [ ] Jam [ ] Minho [ ] James [ ] Paul <----------looks like this :)
Then once I insert another content "Samantha" on the STUDENT table, it will generate a checkbox that contains [] Samantha.
I can't search for a situation like this on the internet! I'm using PHP, HTML and MySQL (PHPMyAdmin).
I don't know if that is called dynamic or what.