Darren
|
| Posted: 08/13/2002, 4:52 AM |
|
Using CodeCharge.
How do I transfer parameters when using the menu type? So far I have been putting code in for the 'default' option that gets the parameter and adds it to the URL as suggested here once, but this only works for a limited number of items as it has a size restriction. I need to pass through about 10 parameters. Putting the parameters as inputs and selecting 'transfer' doesn't work with menus.
Any ideas?
Darren.
|
|
|
 |
Nicole
|
| Posted: 08/14/2002, 12:03 AM |
|
Darren,
(I assume that you use CC)
you should create link fields manually. Use Label type fields with Html flag selected and assign values to it in form before Show event:
PHP
$params = "";
if (get_param("param1"))
$params .="param1=". get_param("param1");
if (get_param("param2"))
$params .="¶m1=". get_param("param2");
$fldfield1 = "<a href = \"Page_name.php?".$params."\">";
|
|
|
 |
|