Forum Moderators: coopster

Message Too Old, No Replies

<textarea>

Syntax wrong

         

henry0

8:56 pm on Aug 1, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hello
I am not sure it does not pertain to HTML

I am trying to accomplish the following

but it does not display the PHP part

<textarea name="ud_first_name" "<? echo "$first_name"?>" rows="10" cols="60"> </textarea></tr></td>

any input

thank you

regards

Henry

MonkeeSage

9:01 pm on Aug 1, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I know next-to-nothing about PHP, but mabye this is the solution?

<textarea name="ud_first_name" rows="10" cols="60"><? echo "$first_name"?></textarea></tr></td>

Jordan

henry0

9:37 pm on Aug 1, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Thanks Jordan that did it
I have still to tweak a few items but it looks to be in the right perspective
Henry

lorax

9:42 pm on Aug 1, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



<? echo "$first_name"?>

You don't need the quotes and you could also abbreviate it to:

<?=$first_name?>