Re: [PHP-DB] Text area

2004-08-26 Thread Peter Ellis
I suspect your return result looks something like "; } I'm aware of the other replies to this message, but I'm being literal and assuming you want that exact string returned, regardless of other alternatives. HTH. -- Peter Ellis - [EMAIL PROTECTED] Web Design and Development Consultant natural

RE: [PHP-DB] Text area

2004-08-24 Thread Gary Every
You need to add slashes to your return: Return ""; Or use single quotes: Return ''; Gary Every Sr. UNIX Administrator Ingram Entertainment Inc. 2 Ingram Blvd, La Vergne, TN 37089 "Pay It Forward!" -Original Message- From: Hafidz Abdullah [mailto:[EMAIL PROTECTED] Sent: Tuesday, August

Re: [PHP-DB] Text area

2004-08-24 Thread Ignatius Reilly
You may profitably investigate PEAR Quickform. Nice client-side and server-side validation functions to do just that. HTH _ - Original Message - From: "Hafidz Abdullah" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, August 24, 2004 10:43 AM Subject: [PHP

Re: [PHP-DB] Text area

2004-08-24 Thread Terry Riley
Hafidz Textarea is not a classic type. Try: function write_textarea() { return ""; } - Original Message - > Hi again, everyone. > > I also have a problem creating my text area. I meant to do a text area > (measuring 5 rows by 70 columns) which accompanies the words: "First

Re: [PHP-DB] text area handle

2001-09-11 Thread Timothy Aslat
On 2001.09.12 13:24 Sommai Fongnamthip wrote: > I know this group for PHP-DB, but I could not find any help from > PHP-Manual about Text Area Handle. I'd like to accept input with > multi-line text box (use textarea quote). How could I get each row value > > in text area. If someone ha