Hi,
I think we're really on different pages here... I can't see any reason why that code you've provided would work anywhere, and I'm still not sure exactally where you're expecting it to execute.
Unless you're using a hidden frame to request some data and re-populate the text area with data retrieved or something, I can't think of any way that PHP could change the value of the text area after the page is loaded. Are we talking about the same thing here? When you say "after the page is loaded" I was assuming that this is after the entire page is downloaded to the user's browser, and all of the PHP has been intrepreted.
Are you using some kind of PHP class representation of HTML or something? If so, you'll need to check the documentation for how the textarea object works.
As far as the Javascript I was talking about earlier though, in DHTML, value is defined. Here's some test code I just wrote in 2 seconds to make sure. It works as I thought it would.
<textarea id="MyText">
</textarea>
<script>
document.getElementById('MyText').value = "Tesing";
</script>
Not sure if I'm going to be able to help you since I'm still not sure what's going on 😉
Let me know though !
Erestar