Link to home
Start Free TrialLog in
Avatar of blerman456
blerman456

asked on

pass a parameter from one kompozer page (html code) to another and return the paramter to the main kompozer page.

How can I pass a logical parameter from on kompozer web page to another and return a parameter to the main page.  Please see attached file.  
experts-exchange-file.doc
Avatar of Jason C. Levine
Jason C. Levine
Flag of United States of America image

Hi blerman456,

I can't see in the attached what you are trying to do.  

However, the usual way to pass parameters is through form posts or through the query string.  Assuming you don't want to do any server side processing, the query string is the best choice:

<a href="somepage.html?somevariable=somevalue">Go to the next page</a>

The information after the ? in the URL becomes available to scripts on the landing page.
Avatar of blerman456
blerman456

ASKER

How do I change the variable to another value in the next page?  Also, the file I attached is a Word file, so you should be able to see it.  Can you try to open it in Word?
ASKER CERTIFIED SOLUTION
Avatar of Jason C. Levine
Jason C. Levine
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial