Re: [PHP] Re: textarea rich replacement?

2003-07-16 Thread Haseeb
EMAIL PROTECTED] Subject: [PHP] Re: textarea rich replacement?   I know that you can set up HTMLArea and others for your needs. You can take away all functions that you don't need or hide them. All this "triks" you can find in manual   Yury   On 15 Jul 2003 at 16:21, Justin Fren

[PHP] Re: textarea rich replacement?

2003-07-16 Thread Yury B .
I know that you can set up HTMLArea and others for your needs. You can take away all functions that you don't need or hide them. All this "triks" you can find in manual Yury On 15 Jul 2003 at 16:21, Justin French wrote: > Hi all, > > I've looked at both editize(.com) and HTMLArea, both of whi

[PHP] Re: textarea new line

2003-01-23 Thread Foong
u can use nl2br() to convert \n to tags b4 echo the string in textarea. Foong "Neil M" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Adi wrote: > > i want to add in textarea a string with new line tag in it. how to do that? > > > > my try: > > $string="-lin

Re: [PHP] Re: textarea new line

2003-01-23 Thread David T-G
Adi, et al -- I somehow missed the original message. Odd... ...and then Neil M said... % % Adi wrote: % >i want to add in textarea a string with new line tag in it. how to do that? % > % >my try: % >$string="-line1n\ -line2 n\-line3"; % >echo "$string"; Did you type this from memory or paste

[PHP] Re: textarea problem

2003-01-23 Thread Marek Kilimajer
Yes - textarea does not have value attribute, put the value between and Print ''.htmlspecialchars($row['OrgName']).''; Denis L. Menezes wrote: Thanks Marek. Could you help me with this piece of code? Print ' value="'.htmlspecialchars($row['OrgName']).'">'; ?> Thanks denis -- PH

Re: [PHP] Re: textarea new line

2003-01-23 Thread Ernest E Vogelsinger
At 12:55 23.01.2003, Neil M said: [snip] >Adi wrote: >> i want to add in textarea a string with new line tag in it. how to do that? >> >> my try: >> $string="-line1n\ -line2 n\-line3"; >> echo "$string"; >> >> but i see a single line instead of: >> -line1 >

[PHP] Re: textarea new line

2003-01-23 Thread Neil M
Adi wrote: i want to add in textarea a string with new line tag in it. how to do that? my try: $string="-line1n\ -line2 n\-line3"; echo "$string"; but i see a single line instead of: -line1 -line2 -line3 tx in advance for any help Hello For a new line in a text area you cant use html 's Yo

[PHP] Re: textarea new line

2002-07-05 Thread Richard Lynch
>i want to add in textarea a string with new line tag in it. how to do that? > >my try: >$string="-line1n\ -line2 n\-line3"; >echo "$string"; > >but i see a single line instead of: >-line1 >-line2 >-line3 > >tx in advance for any help In addition to using \n instead of n\, you also should do: ec

[PHP] Re: textarea new line

2002-07-05 Thread colin mcdonald
use \n Adi wrote: > i want to add in textarea a string with new line tag in it. how to do that? > > my try: > $string="-line1n\ -line2 n\-line3"; > echo "$string"; > > but i see a single line instead of: > -line1 > -line2 > -line3 > > tx in advance for any help > -- PHP General Mailing Lis

[PHP] Re: textarea new line

2002-07-05 Thread Michiel Lange
I'd say $string="-line1\n -line2\n-line3" Newlines are \n, not n\ ... "Adi" <[EMAIL PROTECTED]> schreef in bericht 014b01c22424$5f999b00$9600a8c0@ady">news:014b01c22424$5f999b00$9600a8c0@ady... i want to add in textarea a string with new line tag in it. how to do that? my try: $string="-line1n\

[PHP] Re: textarea problem

2002-05-15 Thread Jason Morehouse
Are you using post or get? I imagine you'd run into some limitations using get. On Tue, 14 May 2002 12:33:22 +1200, Enrique Vadillo wrote: > Hi, > > I'm not sure if this is purely a PHP problem but here it goes: > > i have a form that sends text data to a PHP script, i have some textarea > fi

[PHP] Re: textarea problem

2002-05-15 Thread Vinod Palan
Hi I think that would be problem of the method you are using. Can you tell if you were using post method? Thanks Vinod "Tim Ward" <[EMAIL PROTECTED]> wrote in message 01D892A483EAD511926A00500416D3C01C6B49@HUNTERS-MAIL">news:01D892A483EAD511926A00500416D3C01C6B49@HUNTERS-MAIL... Are you POSTing

[PHP] RE: textarea problem

2002-05-14 Thread Tim Ward
Are you POSTing or GETting the data? Tim Ward www.chessish.com -- From: Enrique Vadillo [SMTP:[EMAIL PROTECTED]] Sent: 14 May 2002 01:33 To: [EMAIL PROTECTED] Subject: textarea problem Hi, I'm not su

[PHP] Re: textarea form input converting < and > to < >

2002-02-20 Thread Jim Winstead
Byron Albert <[EMAIL PROTECTED]> wrote: > I have a few forms that are used to input html. We have run into a > problem of < and > getting turned into < and > when you hit > submit, Or if you hit submit more than once. I have attached a sample > form. The major problem here is that some times w