rgranger
|
| Posted: 08/10/2002, 1:10 PM |
|
the old CC docs show fldname = "<input type=text .... >
what is the new PHP format for updating the display code in CCS?
$form_name->field = "input type=text" would update the value, how should I refrence the display attributes. Sorry to be a pest, trying to get something finished for a friend over the weeeknd.
Robrgranger@dodi.com
|
|
|
 |
Nicole
|
| Posted: 08/12/2002, 7:41 AM |
|
Hello,
the code for CCS is:
global $form_name;
$form_name->field_name->SetValue("<input maxlength=\"20\" value=".$form_name->field_name->Value." name=\"field_name\">");
Note, that field content is to be set to HTML.
|
|
|
 |
|