yes, I used the FMP9 server php wizard to build the starting point for the site. I found a web programmer who explained what I needed to to for textarea to work like I wanted with php.
Basically, in a you must echo a variable rather than using PHP to put the information in the field directly (like you do with a input text field). this is because the does not support value= .
Here is some code that works (it can probably be cleaned up abit by a real php programmer : )
<?php
$OtherAwards = ( $record->getField('other activities', 0))
?>
<?php echo $OtherAwards;?>
Jeff