Hello!
I have multiple editors on same page in different forms. The problem is with saving, that my php code can't identify the textarea where the data is coming from.
Normally I skip this problem by naming submit button:
So is there way to give name to save button or somehow identify the textarea?
I have multiple editors on same page in different forms. The problem is with saving, that my php code can't identify the textarea where the data is coming from.
Normally I skip this problem by naming submit button:
<input type="submit" name="thisform"> />
if ($_POST['thisform']) {
echo $_POST['contenteditor'];
}
So is there way to give name to save button or somehow identify the textarea?