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
0
votes
1 answer

call a function with part of it's name in a variable on serverside with coffeescript

I have a variable on the server side that changes depending on a request from the client side which determines which function to use. The function looks otherwise similar to each other except that it starts calls for a different function. Therefore…
0
votes
3 answers

Extract SQL query from a Web Page independent of the Scripting language

At present i am doing a project regarding SQL injection. I am doing it in such a way that it will find the SQL injection independent of the server side scripting.. whether it may be jsp or asp or php. Now the major problem is I have to extract the…
DG.
  • 21
  • 1
  • 4
0
votes
4 answers

Dynamic Client Script

I need to write a java script. This is supposed to validate if the checkbox is selected in the page or not. The problem here is that the check box is inside a grid and is generated dynamically. The reason being the number of check box that need to…
Vinod
  • 31,933
  • 35
  • 96
  • 119
0
votes
3 answers

What's the best way to make a multi-user microblogging website?

I've an idea of Twitter like website which I am implementing on my own. I'm new to web development so I don't know much about the available tools which can make the work faster. I tried many free twitter clones like status.net but so many changes…
gom
  • 796
  • 2
  • 9
  • 23
0
votes
1 answer

Add tag via script for oocss

I'm getting ready to update a website and I'm thinking about using oocss. I know there are a lot of mixed opinions about oocss, but so far it seems like a good choice for my project. The only thing I dislike about it is the use of tags in the…
0
votes
1 answer

jquery.form.js file upload with progress bar, what goes in server side php script?

I am trying to set up file upload function as in http://jquery.malsup.com/form. But the example for file upload with progress bar do not have the server side script example. All that i know is to process the $_FILES, $_POST, sanitise, and save; but…
Srikanth S
  • 1,717
  • 5
  • 16
  • 21
-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

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
  • 97
  • 1
  • 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,011
  • 11
  • 36
  • 60
-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 Mohamed
  • 2,505
  • 3
  • 25
  • 33
1 2 3
10
11