I've a PHP-page with a table in it.
The table is populated with records from a MySQL-database.
One field of a table (housing) can contain two values: 0 and 1.
When a student is housed the value of the field is 1 otherwise 0.
In the table I want to use a JQUERY UI-button with O/I (like a switch).
When the button is clicked, the value needs to be updated in the MySQL-table and there should an icon ("checked") be shown right to the JQUERY UI-button, if the value is 1 else the icon should disappear.
I assume I need ajax to do this?
Can anyone tell me if this can be done or not? And perhaps how it can be done?