
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Difference Between Server-Side Scripting and Client-Side Scripting
In this post, we will understand the difference between server-side scripting and client-side scripting.
Server-side Scripting
It helps work with the back end.
It doesn’t depend on the client.
It runs on the web server.
It helps provide a response to every request that comes in from the user/client.
This is not visible to the client side of the application.
It requires the interaction with the server for the data to be process.
Server side scripting requires languages such as PHP, ASP.net, ColdFusion, Python, Ruby on Rails.
It is considered to be a secure way of working with applications.
It can be used to customize web pages.
It can also be used to provide dynamic websites.
Client-side Scripting
It helps work with the front end.
It is visible to the users.
The scripts are run on the client browser.
It runs on the user/client’s computer.
It depends on the browser’s version.
It doesn’t interact with the server to process data.
Client side scripting involves languages such as HTML, CSS, JavaScript.
It helps reduce the load on the server.
It is considered to be less secure in comparison to client side scripting.