Questions tagged [server-side-scripting]

Server-side scripting is a web server technology in which a user's request is verified by running a script directly on the web server to generate dynamic web pages. It is usually used to provide interactive web sites that interface to databases or other data stores. Popular Server Side Scripting languages are PHP, ASP, Java (JSP), Perl and Server-side JavaScript.

Server-side scripting is a web server technology in which a user's request is verified by running a script directly on the web server to generate dynamic web pages. It is usually used to provide interactive web sites that interface to databases or other data stores. This is different from client-side scripting where scripts are run by the viewing web browser, usually in JavaScript. The primary advantage to server-side scripting is the ability to highly customize the response based on the user's requirements, access rights, or queries into data stores.

From a security point of view, server-side scripts are never visible to the browser as these scripts are executed on the server and emit HTML corresponding to user's input to the page.

Popular Server Side Scripting languages are PHP, ASP, Java (JSP), Perl and Server-side JavaScript.

157 questions
-2
votes
1 answer

what are some free hosting servers to support Python

I am trying to make an mobile application which requests the server to run the script, and then the python script does some scraping and returns the data to the application. for testing purposes i have went through some free servers like…
P.hunter
  • 1,345
  • 2
  • 21
  • 45
-2
votes
1 answer

How can I store data on the backend script and use it in the content script of my chrome extension?

I want to know how my content script can communicate with the backend script. I mean sending request from content script and get responce from backend script based on request.
-2
votes
2 answers

Server side programming vs Client side programming

I'm trying to understand this concept better. Is the whole point of server side programming is to allow us to communicate with others? Whether it is to get new ideas or to get data that can't be stored locally on the client because it would be way…
-3
votes
1 answer

Can AJAX and JavaScript be used purely for server side scripting?

I am just learning php. My approach to learning is that I start analysing the code in a language I am more familiar with. Hence, I am trying to replicate a PHP dashboard with PHP features like role management, session logging etc. As I am halfway…
-3
votes
1 answer

nodejs express hide source code of static html

is it possible in nodejs, with express to hide the source-code in my static html directory, without rewriting new end-points for each html page? server code looks like this and my website is in the directory html …
user1709076
  • 2,538
  • 9
  • 38
  • 59
-5
votes
1 answer

Creating a notification using javascript and do that when the server says so

I would like to create a bubble notification in the center of the page (without refreshing), and make that bubble unable to be closed. I want the bubble to be able to somehow be enabled by the web server. I have flexibility as to how the client…
-7
votes
1 answer

Why use server-side scripting language?

I'm middle of a confusion here. I'm learning PHP and studied about the advantages and disadvantages of it. Basically, I have to put PHP code inside HTML codes, thus when we load the .php file, it loads a HTML page. I'm unclear here! Why use a…
1 2 3
10
11