I have created a java letter game applet using netbeans 6.0 which also has a Microsoft Access Database for the High Scores. I want to upload it into a webpage (like how its done on miniclip facebook etc) I'd like to know how it could be done
-
I'm not sure what you mean with "upload it into a webpage". Applets are embedded into webpages using the
<applet>
tag or the<object>
tag. However, the Access DB could become a problem, since it is poorly suited to an internet app with potentially many concurrent users.Additionally, accessing a DB directly from an applet is a very bad idea, since the applet code (which is globally accessible to everyone) will need to contain the DB user and password, which means that everyone who bothers to decompile the applet can do whatever they want (and that user is allowed) to do with the DB. At the very least, they'll be able to enter fairy tale highscores (e.g. 50 million when a perfect game gets you 1000).
htw : Minor note: