In: Computer Science
.So I have a project, I just want a general answer on how would you start it. I have to make the Backend read/write from the database. What does that mean and how you u do that general example, please. in php please
EX - would i just make a script that just connects to the database , or is it more to it
The important thing you should always keep in mind while writing the back end scripts is the security, As a back end developer all your constumers trust you on their privacy.
So, always validate each and every request before taking action such as read and write to databases.
Finally read implies taking data from the database using queries and transmitting to user using back end script, in similar manner write implies taking data from user and pushing it into database.