What is server side or Clint side scripting language... | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is server side or Clint side scripting language...

difference between server side or Clint side scripting language

9th Jan 2017, 6:14 PM
Ritesh Kumar
Ritesh Kumar - avatar
1 Answer
+ 2
Server side happens on the server. PHP is an example of this because the web server executes all the PHP code and sends the client the resulting HTML. The client doesn't need to do anything with this approach. Client side scripting happens on the client. JavaScript frameworks such as Angular and React are examples of this. The framework figures out what the page should look like in the users browser and does all the heavy lifting. In theory the server wouldn't need to do anything other than serve up the static files for this approach.
9th Jan 2017, 6:36 PM
James Durand
James Durand - avatar