Can data be copied into a comment box?

Solved/Closed
craigo Posts 19 Registration date Friday 27 February 2009 Status Member Last seen 4 April 2009 - 4 Apr 2009 à 08:11
 jackrowe - 7 Oct 2009 à 14:34
Hello,
Is it possible for data to be copied into a comment box?
Related:

1 response

wifipen Posts 25 Registration date Tuesday 14 October 2008 Status Member Last seen 14 May 2009 14
5 Apr 2009 à 09:00
No it is not possible
You can populate the comment box w/ data by putting the data into a $variableWithData, then using that variable as the value="" attribute of the comment box (which is typically just an html form).

The value attribute would look like this:

value="<?php echo $variableWithData; ?>"

and just fits into the textarea tag as per usual. The pages have to be able to parse php. Users will be able to replace the data in the comment box with their own text. This technique is also useful for filling in form fields that users have already completed when returning them to a form for corrections.