Simple registration form for [Only registered and activated users can see links. Click Here To Register...]
Is it MVC?
No
I want to add/remove fields, how do I do that?
Add/Remove fields in index.php
---
In "includes\models\Account.php"
Add/Remove the properties,
Add/Remove the validations in the function validate()
---
In "includes\classes\Register.php"
Add/Remove the assignment of values to the properties in the function handleRegistration()
Can this also be used for updating the existing values?
Yes, have a look at how the registration is handles and instead of calling insert() you can call update()
Note: You will most likely have to modify the update query.
Is it MVC?
No
I want to add/remove fields, how do I do that?
Add/Remove fields in index.php
---
In "includes\models\Account.php"
Add/Remove the properties,
Add/Remove the validations in the function validate()
---
In "includes\classes\Register.php"
Add/Remove the assignment of values to the properties in the function handleRegistration()
Can this also be used for updating the existing values?
Yes, have a look at how the registration is handles and instead of calling insert() you can call update()
Note: You will most likely have to modify the update query.