I'm trying do develop a modul and have the problem, that i can't get the data out of my form. (I'm Using cmsms 1.5.3)
this is my default.action.php file:
Code: Select all
<?php
debug_display($params);
debug_display($_POST);
echo $params['description'];
echo $this->CreateFormStart($id, 'default', $returnid);
echo $this->CreateInputText($id,'description',$desc);
echo $this->CreateInputSubmit($id, 'submit', $this->Lang('submit'));
echo $this->CreateFormEnd();
?>
Does anybody can help me with this?