Why PHP hosting is preferred over java hosting?

leafypiggy

Manager of Pens and Office Supplies
Staff member
Messages
3,819
Reaction score
163
Points
63
yeah. jsp is JAVASCRIPT which is a whole different thing from Java
 

kkenny

Active Member
Messages
1,950
Reaction score
0
Points
36
Here's my opinion, and or theory.

Java uses the client side to things, while php do things on the server side. I'm not sure if JAva could do this, but it's nearly impossible to steal php scripts installed on a server unless the MIME is installed incorrectly or the script is given away. (Hard to find server code)
 

hopper

Member
Messages
225
Reaction score
0
Points
16
*points to wikipedia link in previous post*
i think Java hosting means JSP which is also server side
 

leafypiggy

Manager of Pens and Office Supplies
Staff member
Messages
3,819
Reaction score
163
Points
63
o. well I have always heard of JSP meaning Javascript...Guess I should have researched... :p
 

marshian

New Member
Messages
526
Reaction score
9
Points
0
no...java applets are interpeted by the AppletViewer inside your browser and then defined by an HTML page using <param>'s

<param>'s are for passing information to the applet, but they have to be in the html page when it loads...
<applet>
<param>
</applet>
and then the browser has nothing more to do with it, since the virtual machine runs the applet in a sandbox (if he's not allowed to go out, of course).
and that all happens on the CLIENT. the server just gives the html and then gets a new connection that requests the java classes.

If you don't beleive me: http://java.sun.com/applets/
 
Last edited:
Top