Jump to content

Passing PHP Variable to Applet


kvegas

Recommended Posts

I'm trying to pass the variable "romname" to the rom parameter in the applet, but it's not working.  The applet loads but the file in the variable doesn't.

 

The guys in the PHP section said that the PHP code checked out and that it must be an applet issue, so here's my code.  Thanks!

 

<?php
$romname = "http://maverik247.com/vnes/roms/mariobros.nes";
?>


<applet name="vNES" code="vNES.class" archive="http://maverik247.com/vnes/vnes203.jar" width="512" height="480">
<param name="sound" value="on" />
<param name="timeemulation" value="on"/ >
<param name="fps" value="off" />
<param name="stereo" value="off" />
<param name="rom" value="<?php echo($romname);?>" />
<param name="showsoundbuffer" value="off" />
<param name="scale" value="on" />
<param name="scanlines" value="off" />
<param name="nicesound" value="on" />
<param name="romsize" value="24592" />
</applet>

 

I've tried directly assigning the variable in the parameter (

<param name="rom" value="http://maverik247.com/vnes/roms/mariobros.nes" />

) and it does work, however I need to be able to assign from a variable (which will eventually be passed to from the URL to PHP, and then to the applet).

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.