answersLogoWhite

0


Best Answer

Server side scripts start processing data generally when end user or client triggers some action. Server side looks for the request object sent by end user and processes it and presents the relevant data model.

For example a user wants to see his profile. He can click on the Show Profile button after Login. Once he click it a request object with two parameters Login Id and Profile is sent. The server side processes the request and separates the Login Id and Show Profile. It then ask the database or file to show profile associated with the login id.

There are auto-loading classes and triggers which activate on their own without user input also.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How does the program written in server side scripting language works?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is ruby server side scripting language?

Yes, Ruby is a server-side scripting language.


Can you write multiple scripting languages in a single page?

Yes. In fact this is fairly common. For example, using in the same web page a client scripting language such as JavaScript and a Server Scripting Language, such as ASP.NET or PHP.


Give two example of server side scripting language?

PHP Perl ASP


Which language can be used to write server side scripting in ASPNET?

c# AND VB AND C++


Difference between apache and PHP?

Apache is a web server. PHP is a scripting language.


Why PHP is more secure?

All server scripting language speak about it self, why it is secured. Individual perceptions varies on secure ness of a one particular server scripting language. A programmer's focus is the areas of activities/actions he has to undertake as per the security specification for a particular scripting language to make it secured. It may be PHP,ASP or JSP.


What is wml scripting?

WML scripting is the act of scripting / coding / writing in the language of WML - which is just slightly adjusted XML that is made for mobile devices. WMLScript (Wireless Markup Language Script) is the client-side scripting language of WML (Wireless Markup Language). A scripting language is similar to a programming language, but is of lighter weight. With WMLScript, the wireless device can do some of the processing and computation. This reduces the number of requests and responses to/from the server.


What is the difference between asp and servlet?

ASP is a server side technology which enables a developer to combine both HTML & scripting language in the same page. servlets are server side programs written in java.It is platform independent


What are the two types of scripting language?

In web programming you have: - Server side scripting: using languages like PHP, Ruby, ASP or JAVA - Client side scripting: usually meaning JavaScript, although there are others


What is the PHP programming language?

PHP is a server-side scripting language mainly for processing a user's data-input and generating dynamic content.


What is client-side scripting language?

A server-side scripting language is one that resides on the server. Whereas client-side scripting happens inside the users browser, after they've downloaded the code, server-side languages work before the file is sent from the server. Server-side languages tend to deal with more "heavy lifting" than client side. They retrieve records from databases, maintain state over the stateless HTTP connection, and do a lot of things that require more security than JavaScript alone can provide. Because they reside on the server, these programs never have their source code exposed to the user. JavaScript source code must be available to the client by definition. Some server-side languages are: C, PHP, Ruby, Python, JavaServer Pages, ColdFusion, ASP, and Perl.


How do you save the input from an HTML form to a notepad document?

You can't. You need a Server-side scripting language such as php.