Java/PHP- question regarding applet parameters?

  • Thread starter Thread starter mr candy
  • Start date Start date
M

mr candy

Guest
Hey there.
I'm currently trying to add php code into:


<param name="nick" value="example">

Basically what im trying to do is get it to collect the "nick" from a mysql database. The methods i have tried have failed, so i am wonder is it even possible to add php code into this, if so how?

Thanks
ok, i'm currently adding a java applet to my website and here is a example of what the imbed applet looks like.

<APPLET CODE=SampleApplet.class CODEBASE=example
WIDTH=350 HEIGHT=60>
<PARAM NAME=windowClass VALUE=BorderWindow>

<PARAM NAME="Custom nick" VALUE= <?php $user ?> >

<PARAM NAME=buttonText
VALUE="Click here to see a BorderLayout in action">
</APPLET>

what i am trying to do is change the param to get a custom value from a mysql server (example above). This isnt working im asking if it is possible to do this and if so how would i do it? would i need to add the php into the java applet itself? or is there a way to do it like this
 
Back
Top