morowind
Posts: 46
|
| Posted: 12/21/2010, 7:51 AM |
|
hello all,
I have a problem that I can not solve:
I want to add the same parameter in the querystring but with added further value (append value to parameter)
?model=Mazda&specs=ABS
when I add another 'specification (specs)' -for example "ESP"- querystring will become:
?model=Mazda&specs=ABS,ESP
and so on with other specifications.
so..the question is how to append multiple values to same parameter.
is nessesary to catch old value and append new value...
thank's for reading this.
|
 |
 |
datadoit
|
| Posted: 12/21/2010, 9:09 AM |
|
http://docs.codecharge.com/studio40/html/Components/Fun...dParam.html?toc
CCAddParam(CCGetQueryString("QueryString",""), "specs",
CCGetParam("specs","") . "," . "ESP");
|
|
|
 |
|