What do you mean by client side programming language and server side programming language? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What do you mean by client side programming language and server side programming language?

It is said that JavaScript is client side and PHP is server side programming language, but literally I don't know why do they say like that . Can anyone please explain what's this things?

11th May 2020, 3:13 PM
Nikhil Maroju
Nikhil Maroju - avatar
4 Answers
+ 2
Client side scripting is performed to create a code that can run on the Client end (program) without requiring the server side preparing. Essentially, these kinds of contents are set inside a HTML report. The Client side scripting can be utilized to look at the client's structure for the mistakes before submitting it and for changing the substance as per the client input. As I referenced previously, the web requires three components for its working which are, Client, database and server. Server-side scripting is a strategy of programming for creating the code which can run programming on the server side, in straightforward words any scripting or programming that can run on the web server is known as server-side scripting. The tasks like customization of a site, dynamic change in the site content, reaction age to the client's inquiries, getting to the database, etc are performed at the server end.
11th May 2020, 5:48 PM
Lokesh Gupta
Lokesh Gupta - avatar
+ 2
Client side scripts run in the browser after the page is loaded. Server side scripts run in the server when the browser requests the page. Also, JavaScript can be used to write both client side and server side scripts For more explanation https://skillcrush.com/blog/client-side-vs-server-side/
11th May 2020, 3:20 PM
Ore
Ore - avatar
+ 2
Client side script is the program that run from browser of your pc or phone. Server side script is the program that run from web server, the server normally is a remote server far away from your place, could be in USA, Europe... Im order to understand many terminology of web programming, it's crucial you must know the distinction of server and client side programming.
11th May 2020, 3:28 PM
Calviղ
Calviղ - avatar
+ 1
Client-side means that the action takes place on the user’s (the client’s) computer. Server-side means that the action takes place on a web server. Client-side web development involves interactivity and displaying data, server-side is about working behind the scenes to manage data. The two sides communicate via HTTP requests and responses.Full-stack developers, on the other hand, have the skills of both client-side and server-side web developers. Companies often hire full-stack developers to manage their web presence and keep their sites up to date. http://net-informations.com/js/iq/side.htm
19th Aug 2020, 4:50 AM
rahul kumar
rahul kumar - avatar