I need to create the server part of my mobile application.
The server part consists of registering a user to the server by making a simple http post request (json) from device to server and saving the users credentials to database (mysql).
Some http post requests from the devices , stating to the server in which kind of events they want to be subscribed (my server keeps data of some events).
Send push notifications , to my devices from the server when a new event is generated (already have the php scripts for that).
For a kind of server likes this , do i need to use a php framework? In this page i found a list of different frameworks. I found this page while reading php tutorials and some of them suggested using a php framework.
But what are these frameworks for? Do i need to learn/use one? When are they needed. Are they for front-end sites?
Thank you for reading my post :)