Hi I've done a lot of research on the best way to communicate between a java applet and MySql Database. I have a tune player which I have students logging onto, it's a java applet with a speed slider. I want to save the speed that they play each tune at so it goes back to the same speed the next time they open that tune. It seems I have a number of options, none of which seem very neat.
- Use a javascript function to periodically check the speed and save it to a cookie, then each page of the site would have to check cookies relationg to each tune.
- Make each link on the page call a javascript function to check the speed variable in the applet and add it to a perameter in the url then redirect so the next php page can save the speed to a database. This way when the user navigates away the speed will be saved, but this won;t work if the back button is used.
Is there a better way of doing this?
