I know that PHP is a server side scripting language. Then what is the difference between an ordinary programing language and server side scripting language? JAVA is in which category and why?
What is the difference between server side and client side scripting language
Collapse
X
-
Programming languageOriginally posted by AMT Indiawhat is the difference between an ordinary programing language and server side scripting language?
Server-side scripting
Java ! Basically I can put java plat foam in to 3 sections.Originally posted by AMT IndiaJAVA is in which category and why?
JDK
J2EE
J2ME
Once you read them, you can simply put them to the matching category.
So Its a Wiki answer. If anything missing, let me know. -
Heya, AMT.
Changed thread title to better describe the problem.
Did you mean JavaScript? JavaScript, like HTML, CSS and ActionScript, to name a few, is a client-side language. That is, the code is executed exclusively by the client computer (the web browser).
Server-side code is executed exclusively on the server. The client will never see your PHP code.
This is why PHP cannot execute JavaScript and vice versa.Comment
-
Originally posted by pbmodsHeya, AMT.
Changed thread title to better describe the problem.
Did you mean JavaScript? JavaScript, like HTML, CSS and ActionScript, to name a few, is a client-side language. That is, the code is executed exclusively by the client computer (the web browser).
Server-side code is executed exclusively on the server. The client will never see your PHP code.
This is why PHP cannot execute JavaScript and vice versa.
No I meant JAVA itself. Can't we compare PHP and JAVA?Comment
Comment