- Edited
Hello.I would like to take fields by $_POST, or in any other way...Lets take basic form: Help Topic, Issue Summary, Message.I created simple array where I stores the data sent:$data = array( 'issueSum' => Need this. 'message' => $_POST, 'topicName' => $ticket->getTopic(); //I do it lower in the code, onCreate(););As you can see. I can take message form by $_POST, topic name just by $ticket->getTopic();, but dont have idea how to take issue summary field, or any other fields...For example I created a new form section, added labels and variables, but dont have idea how to get it.It generate:<input type="text" id="_4cc8fda5d432ceb7" size="40" maxlength="50" placeholder="" name="4cc8fda5d432ceb7" value="">but I cannot use $_POST here for this id...