Seichobob
Posts: 55
|
| Posted: 11/06/2007, 12:28 AM |
|
hi,
i have the following ccgetfromget which works perfect:
CCGetSession("number_1") + CCGetFromGet("number_2",0);
in this case i have two numbers which will be added.
what do i have do do if i want to do the same with text? for example:
$Container->complete_text->SetValue(CCGetFromGet("text_1", "") + CCGetFromGet("text_2", "") );
text_1 is for example: "hello"
text_2 is for example: "world"
i have a textfield on my page and i retrieve the value for control... the result in the textfield should be: "hello world"
sorry for my bad explanation, hope you all understand...
thanks
|
 |
 |
wkempees
|
| Posted: 11/06/2007, 3:06 AM |
|
$Container->complete_text->SetValue( CCGetFromGet("text_1", "") . " " .
CCGetFromGet("text_2", "") );
Walter
|
|
|
 |
Seichobob
Posts: 55
|
| Posted: 11/06/2007, 3:20 AM |
|
hi walter,
thank you very much, it works great
|
 |
 |
|