Detecting Java Support

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
mdl
Forum Newbie
Posts: 3
Joined: Mon Feb 21, 2005 6:48 am
Location: Sweden

Detecting Java Support

Post by mdl »

Hello... :?

I have some problems with a page that I am working on... Sadly one of the menus on the page is a java applet, and some computers does not have (or more comonly, turned off) support for java appletts.

My question is then, is there any way (by php or other ways) detecting if or if not java support is enabled, so I can check and use PHP to alter the page to replace the applet function when browsers does not support it???

Thanks for any suggestions

//Daniel
User avatar
anjanesh
DevNet Resident
Posts: 1679
Joined: Sat Dec 06, 2003 9:52 pm
Location: Mumbai, India

Post by anjanesh »

<NOOBJECT></NOOBJECT> is not available in W3C but somehow its widely used to make alternatives for flash stuff.

Code: Select all

<OBJECT>
...
</OBJECT>

<NOOBJECT>
     Alternate content
</NOOBJECT>
Post Reply