As you know, in Joomla, to take the value of all fields of a certain form, they must have the names like name="jform[something]" and then we can take them with the help of the code:
$jinput = JFactory::getApplication()->input; $formData = new JRegistry($jinput->get('jform', '', 'array')); But is it possible to take the value of all fields if their names have the usual form name="something" without jform[] and the form itself has its <form name="myForm"> for example <form name="myForm"> ? If so, how?