Re: [PHP] stupid little problem

2001-11-16 Thread Andrey Hristov
Use the tag before the input, and after it. Andrey Hristov IcyGEN Corporation http://www.icygen.com BALANCED SOLUTIONS - Original Message - From: "Michiel van Heusden" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, November 16, 2001 2:30 PM Subjec

Re: [PHP] stupid little problem

2001-11-16 Thread Richard Baskett
In html anything more than one space will be represented as only one space, so to overcome that you'll need to use   which is a non-breaking space. To get three spaces in between a word you would do: word1   word2 and there will be exactly three spaces in between. I hope that helps! Rick > so

RE: [PHP] stupid little problem

2001-11-16 Thread Christoph Starkmann
Hi! > a$ = "test"; > b$ = "test2"; > data$ .= a$ . " " . b$ " "; > echo data$; > > it outputs: > "test test2" > instead of: > "test test2 " > > I really need that spaces.. > any help? HTML is "normalizing" all text; So any number of spaces, tabs newlines etc. become one space " "

[PHP] stupid little problem

2001-11-16 Thread Michiel van Heusden
sorry..I'm quite new in this php-stuff i've got a little problem if I write a$ = "test"; b$ = "test2"; data$ .= a$ . " " . b$ " "; echo data$; it outputs: "test test2" instead of: "test test2 " I really need that spaces.. any help? thnx -- PHP General Mailing List (http://www