Server side and Client side Programming Last Updated : 26 Oct, 2017 Comments Improve Suggest changes Like Article Like Report Server-side Programming : It is the program that runs on server dealing with the generation of content of web page. 1) Querying the database 2) Operations over databases 3) Access/Write a file on server. 4) Interact with other servers. 5) Structure web applications. 6) Process user input. For example if user input is a text in search box, run a search algorithm on data stored on server and send the results. Examples : The Programming languages for server-side programming are : 1) PHP 2) C++ 3) Java and JSP 4) Python 5) Ruby on Rails Refer PHP articles for example server side codes. Client-side Programming : It is the program that runs on the client machine (browser) and deals with the user interface/display and any other processing that can happen on client machine like reading/writing cookies. 1) Interact with temporary storage 2) Make interactive web pages 3) Interact with local storage 4) Sending request for data to server 5) Send request to server 6) work as an interface between server and user The Programming languages for client-side programming are : 1) Javascript 2) VBScript 3) HTML 4) CSS 5) AJAX Refer JavaScript articles for example Client Side codes that run in browser. Reference : https://www.upwork.com/hiring/development/how-scripting-languages-work/ Comment More infoAdvertise with us Next Article Server side and Client side Programming P PaduchuriManideep Improve Article Tags : Websites & Apps Similar Reads Difference between Web Browser and Web Server The Web Browser and Web Server are two essential components of the World Wide Web that work together to deliver web pages to users. Although they interact with each other, they serve different purposes and are designed to perform distinct tasks. Understanding the differences between them is key to u 4 min read ASP Introduction and Installation ASP stands for Active Server Page. It is commonly known as Classic ASP or ASP Classic. ASP is a server-side scripting language that is used for executing the scripts on the webserver. This technology was developed by Microsoft. It is an old but still useful tool used to create dynamic webpages. ASP 3 min read Why we should use ASP.NET? ASP.NET is a web framework designed by Microsoft Inc. that is extensively used to build robust web applications. In this article, we will analyze why ASP.NET should be chosen over other accessible web frameworks. Following are some main advantages of ASP.NET which makes it better than other framewor 2 min read Client-Server Model The Client-Server Model is a distributed application architecture that divides tasks or workloads between servers (providers of resources or services) and clients (requesters of those services). In this model, a client sends a request to a server for data, which is typically processed on the server 6 min read Client-server Computing and its Terminologies As with other developing stages in the computer sector, the client comes with its new collection of server computing terminology. As indicated in the term, a client-server environment is occupied by the client and the server. Client systems are typically single-user workstations or computers that pr 2 min read Like