recover text area from form (solved)
Posted: Sat May 24, 2008 9:49 am
Is there any way to recover the current content of a text area from a form without using javascript, just with php?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
I don't understand what you want to do. PHP is a server-side language. When it runs, there is no page in anyone's browser yet. What text area are you referring to? Something in the current PHP script?thosecars82 wrote:Is there any way to recover the current content of a text area from a form without using javascript, just with php?
Code: Select all
<?php
echo '<textarea name="TEXTAREANAME">'.$_REQUEST['TEXTAREANAME'].'</textarea>';
?>