In /views/life/editPlayer.php when updating a players data, you refer to the donator level column by donorlevel but it is called donatorlvl in the database.
This way you cannot save the changes, because the update query fails.
To fix this, you need to change lines 73 and 97 in /views/life/editPlayer.php and replace donorlevel in the query by donatorlvl.
In
/views/life/editPlayer.php
when updating a players data, you refer to the donator level column bydonorlevel
but it is calleddonatorlvl
in the database. This way you cannot save the changes, because the update query fails. To fix this, you need to change lines 73 and 97 in/views/life/editPlayer.php
and replacedonorlevel
in the query bydonatorlvl
.