Re: [PHP] placing values in html teaxtarea

2004-07-12 Thread John W. Holmes
Keith Greene wrote: >> Here is what I tried: >> >> > textareas do not use the value attribute. instead, the value is placed between the tags: Ensure you run $test through htmlentities() or htmlspecialchars() before placing it in your like this to prevent code injection. -- ---John Holmes..

Re: [PHP] placing values in html teaxtarea

2004-07-12 Thread Keith Greene
textareas do not use the value attribute. instead, the value is placed between the tags: At 08:09 AM 7/12/2004, Hull, Douglas D wrote: After doing calculations etc on my data I am wanting to place it in a textarea form in html. I am having trouble getting my data to show up in my texarea.

Re: [PHP] placing values in html teaxtarea

2004-07-12 Thread José de Paula
On Mon, 12 Jul 2004 10:09:25 -0500, Hull, Douglas D <[EMAIL PROTECTED]> wrote: > After doing calculations etc on my data I am wanting to place it in a textarea form > in html. I am having trouble getting my data to show up in my texarea. For > example, say after all my calculations I my field c

Re: [PHP] placing values in html teaxtarea

2004-07-12 Thread Tom Rogers
Hi, Tuesday, July 13, 2004, 1:09:25 AM, you wrote: HDD> After doing calculations etc on my data I am wanting to HDD> place it in a textarea form in html. I am having trouble getting HDD> my data to show up in my texarea. For example, say after all my HDD> calculations I my field called $test end

Re: [PHP] placing values in html teaxtarea

2004-07-12 Thread Jason Wong
On Monday 12 July 2004 23:09, Hull, Douglas D wrote: > After doing calculations etc on my data I am wanting to place it in a > textarea form in html. I am having trouble getting my data to show up in > my texarea. For example, say after all my calculations I my field called > $test ends up contai

Re: [PHP] placing values in html teaxtarea

2004-07-12 Thread Travis Low
Would you please turn off return receipt in your messages? Thanks! Travis Hull, Douglas D wrote: After doing calculations etc on my data I am wanting to place it in a textarea form in html. I am having trouble getting my data to show up in my texarea. For example, say after all my calculations

[PHP] placing values in html teaxtarea

2004-07-12 Thread Hull, Douglas D
After doing calculations etc on my data I am wanting to place it in a textarea form in html. I am having trouble getting my data to show up in my texarea. For example, say after all my calculations I my field called $test ends up containing "This is a test". Here is what I tried: I can ad