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.

152 questions
-1
votes
1 answer

classic asp multiple server side asynchronous callings

I have a classic asp page that when running do a lengthy check repeatedly calling 20 times the same vbscript function each time with different argument. The function returns either true or false (depending on the argument). Each time the function…
-1
votes
1 answer

Why We are using javascript in server-side?

Why we started using javascript in server-side ?? and which is the best javascript language for server-side ?? and why for e.g node.js
-1
votes
1 answer

Running Task In The Background

What is the technology which allows the web application to process the task in the background without holding user to wait until the task to finish. Example, as a user, 1. I want to submit a form which requires heavy processing. (Assume it…
-1
votes
1 answer

By PHP-how to stop uploading file if size of temporary file uploaded was more than specific size while uploading is in process.(e.g. 100KB)?

update (09 DEC 2017): I want prevent uploading file more than 100 KB on server from users and during uploading, if the upload volume exceeds 100 kilobytes, stop uploading progress and display warning for user by PHP OR any other script for…
harix
  • 247
  • 2
  • 13
-1
votes
1 answer

What is the difference between server side scripting and network programing ? What purpose does network programing serve?

I actually started node.js but i don't know how it is different from network programming.
-1
votes
2 answers

Get the filetype of a webpage

Is it possible to get the filetype of a webpage. I see sometimes webpages like: random.com/game What is the filetype of game? I can of course try to guess the filetypes, such as game.html, game.php etc. but is there a way to get it?
L4m0r
  • 57
  • 2
-1
votes
1 answer

File extension .php

I understand that the .php file extension is necessary for PHP parsing, but is it possible to work around this by putting the PHP code in a separate file and then using a .html file that includes it in a script tag?
user939687
  • 45
  • 7
-1
votes
1 answer

jQuery/PHP image slider that loads user selected image directories

I'm looking for an image slider that has the ability to load different directories via my server. I'm not using any CMS. For example if I have the directories: localhost/galleries/florida, localhost/galleries/wedding, and…
에이바
  • 1,004
  • 11
  • 33
  • 57
-2
votes
2 answers

hard time understanding server side script

I learned that php and node.js are both server side script. I'm having hard time understanding the connection between node.js and running javascript on web browser. So can we not access files and database with javascript on web browser? How are…
-2
votes
1 answer

Unity server side c# scripts load at runtime

The subject is for advanced developers. I want to load the game logic or some of it (c# files) at game load just like other assets (assetbundles, audio, images), variables and configurations. I also want to be able to remotely change/update game…
Rami Ibrahim
  • 1,488
  • 1
  • 19
  • 27
-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,203
  • 2
  • 15
  • 39
-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,066
  • 7
  • 31
  • 50
1 2 3
10
11