Hi George,

You can use PHP to gnerate the HTML code, including the embedding code. The embedding code contains something like:

        <embed type="application/x-revolution"
                src="Name of your Stack File.revlet"
                width=320 height=320
                stack="Name of your Stack"
                requestedName=""
                instanceID=""
        ></embed>

You can add a line, for example

                username="John Doe"

changing the embed tag into

        <embed type="application/x-revolution"
                src="Name of your Stack File.revlet"
                width=320 height=320
                stack="Name of your Stack"
                requestedName=""
                instanceID=""
                username="John Doe"
        ></embed>


Now you can use the revletParams property of your stack to retrieve the variable, in this case username, and put it into a field:

put the revletParams["username"] of this stack into fld "User Name"

The HTML of your website is generated by PHP and a script in your stack reads the parameter that was embedded in the HTML code through the revletParams property.

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
http://economy-x-talk.com

Download Snapper Screen Recorder at http://snapper.economy-x-talk.com

On 13 aug 2009, at 16:25, George C Brackett wrote:

I feel like a dummy, but I don't see the connection between a php variable value and the embed code you reference. Could you please be more specific?

George

_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to