[PHP] textarea problem

2003-01-23 Thread Denis L. Menezes
Thanks Marek.

Could you help me with this piece of code?

?php
  Print 'textarea name=OrgAddress cols=44 rows=5 id=textarea
value='.htmlspecialchars($row['OrgName']).'/textarea';
  ?

Thanks
denis


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] textarea problem

2003-01-23 Thread Ernest E Vogelsinger
At 14:34 23.01.2003, Denis L. Menezes said:
[snip]
?php
  Print 'textarea name=OrgAddress cols=44 rows=5 id=textarea
value='.htmlspecialchars($row['OrgName']).'/textarea';
  ?
[snip] 

This won't work. textarea needs its value outside the tag, without an
attribute, just plain:

Print 'textarea name=OrgAddress cols=44 rows=5 id=textarea',
  htmlspecialchars($row['OrgName']),
'/textarea';


-- 
   O Ernest E. Vogelsinger
   (\)ICQ #13394035
^ http://www.vogelsinger.at/



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] textarea problem

2002-05-13 Thread Enrique Vadillo

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 field which goes like this:

TEXTAREA wrap=soft NAME=mynote ROWS=15 COLS=70/TEXTAREA

everytime i POST this, $mynote is truncated to 1867 bytes, i have
repeatedly tried to submit text 2500 bytes long but it's always
truncated to that size -btw there is no javascript or anything in the
middle that might modify the size- my questions is: do i have to
setup anything special in my php.ini? i have this in my php.ini:

post_max_size = 30M

I have also noticed that Hotmail has no problem sending textarea
input 2500 bytes long or more using exactly the same tags.. what's
wrong then? I use Apache 1.3.23 and PHP 4.1.1 (on RedHat 7.1)

if anyone has encountered this problem b4, i'd appreciate some help.

Enrique-



_
Únase con MSN Hotmail al servicio de correo electrónico más grande del 
mundo. http://www.hotmail.com


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php