I cannot seem to figure out what the name of the textarea is, can someone tell me please?
In other words, when sending the information to a php script, what is it I'm looking for?
Most html form textarea's, input's, and the like have a "name" such as:
<textarea name="mytextarea"></textarea>
And the name is what I use to receive info from the form in the php script....
Any help please?
Thanks
In other words, when sending the information to a php script, what is it I'm looking for?
Most html form textarea's, input's, and the like have a "name" such as:
<textarea name="mytextarea"></textarea>
And the name is what I use to receive info from the form in the php script....
Any help please?
Thanks
RE: What is the name of the textarea?
For others that may end up looking for the same thing, here is the answer:
In test.php you'll see:
$oFCKeditor = new FCKeditor ;
$oFCKeditor->BasePath = './' ;
$oFCKeditor->Value = $page_content ;
$oFCKeditor->CreateFCKeditor( 'EditorDefault', '700', '400' ) ;
I simply changed the "EditorDefault" to the name tag I needed for my php script, and it now works fine.
I do not know if this is the proper method for sure, but it is working properly for me at the moment, so I will continue using it this way...