Advertisements
Advertisements
प्रश्न
What are the types of a scripting language?
टिप्पणी लिखिए
उत्तर
Web scripting languages are classified into two types, client-side and server-side scripting language. PHP is completely different from Client-side scripting language like Javascript. The PHP code entirely executes on Webserver which is installed in the remote machine.
shaalaa.com
Various Server-side Programming Languages Global Usage Statistics
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
Which of the following must be installed on your computer so as to run PHP script?
We can use _______ to comment a single line?
- /?
- //
- #
- /* */
Which of the following PHP statement will store 41 in variable num?
- num = 41
- num = 41
- echcho num
- echo 41
What will be the output of the following PHP code?
< ?php
$num = 1;
$num1 = 2;
print $num . “+”. $num1 ;
?>
Which of the following PHP statements will output Hello World on the screen?
Which statement will output $x on the screen?
Which of the below symbols is a newline character?