Can someone please explain the meaning of server side and the client side? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

Can someone please explain the meaning of server side and the client side?

8th Apr 2018, 4:31 PM
Youness Oubelkacem
Youness Oubelkacem - avatar
2 Answers
+ 11
In simple words: Client side means code that executes on the user's device like running a Javascript code in your web browser. Server side means code that executes on the server like running php, nodejs , ruby code on a web server. More detailed info below: https://www.techopedia.com/definition/439/client-side https://www.techopedia.com/definition/439/server-side
8th Apr 2018, 4:46 PM
Lord Krishna
Lord Krishna - avatar
+ 5
Krishna is correct. a good example of this would be string files used in MMOs. the actual text for the file is stored client-side when the server sends a reference to that text it is loaded from the clients end and displayed in their UI. this enables large menus, Quest descriptions and other types of heavy Text data to be displayed almost instantaneously without the need to download it from the server. this is just one example of why it's important to have the two different software systems working together, client and server.
8th Apr 2018, 8:19 PM
Michael Simnitt
Michael Simnitt - avatar