[PHP] PLEASE help, this is driving me crazy - is saveHTML() etc not UTF-8 capable?

2009-02-17 Thread mike
Pardon the messy code, but I got this working like a charm. Then I went to try it on some Russian content and it broke. The inbound was utf-8 encoded Russian characters, output was something else unintelligible. I found a PHP bug from years ago that sounded related but the user had a workaround.

[PHP] please help me I try to post my question to Php.net 2-3 times

2006-02-15 Thread wvolks
text file problem read text file to array string. I use function File(). but when I display data in text file it compress space in each lines such as first record contain "1_2__3__4__" ( _ = blank ) when store in array string is "1 2 3 4" . I want you tell me howto do?

Re: [PHP] please help me I try to post my question to Php.net 2-3times

2006-02-16 Thread Hugh Danaher
ntable characters, I suggested he substitute   for the blank spaces. He also said "I want fixed possition . please help me ?", and so I tried to help. Regards, HTD - Original Message - From: "Barry" <[EMAIL PROTECTED]> To: Sent: Thursday, February 16, 2006 12:37

Re: [PHP] please help me send html email from php scripts instead of simple text

2005-04-28 Thread Richard Davey
Hello Giuseppe, Thursday, April 28, 2005, 2:22:20 PM, you wrote: CG> Hello, can you please help me send an html email using php instead of CG> just simple text output. I'm trying to have the user fill out a form ( CG> https://www.smilerochester.com/medical_form.html ) and have the exact CG> same

Re: [PHP] please help me send html email from php scripts instead of simple text

2005-04-28 Thread John Nichel
Carraccia, Giuseppe wrote: Hello, can you please help me send an html email using php instead of just simple text output. I'm trying to have the user fill out a form ( https://www.smilerochester.com/medical_form.html ) and have the exact same form emailed to me with the same pretty format of a for

Re: [PHP] PLEASE help, this is driving me crazy - is saveHTML() etc not UTF-8 capable?

2009-02-17 Thread Nathan Nobbe
On Tue, Feb 17, 2009 at 12:40 PM, mike wrote: > Pardon the messy code, but I got this working like a charm. Then I > went to try it on some Russian content and it broke. The inbound was > utf-8 encoded Russian characters, output was something else > unintelligible. > > I found a PHP bug from year

Re: [PHP] PLEASE help, this is driving me crazy - is saveHTML() etc not UTF-8 capable?

2009-02-17 Thread mike
i tried that kind of stuff - it did not seem to work. i will try again... if anyone has any ideas i.e. "use iconv to convert to A, then use DOM stuff, then use iconv to move it back to UTF8..." etc. i am all ears. On Tue, Feb 17, 2009 at 12:46 PM, Nathan Nobbe wrote: > On Tue, Feb 17, 2009 at 1

Re: [PHP] PLEASE help, this is driving me crazy - is saveHTML() etc not UTF-8 capable?

2009-02-17 Thread mike
On Tue, Feb 17, 2009 at 4:26 PM, mike wrote: > i tried that kind of stuff - it did not seem to work. > > i will try again... if anyone has any ideas i.e. "use iconv to convert > to A, then use DOM stuff, then use iconv to move it back to UTF8..." > etc. i am all ears. Nope - for example this is t

Re: [PHP] PLEASE help, this is driving me crazy - is saveHTML() etc not UTF-8 capable?

2009-02-18 Thread Addmissins Development
mike wrote: > On Tue, Feb 17, 2009 at 4:26 PM, mike wrote: >> i tried that kind of stuff - it did not seem to work. >> >> i will try again... if anyone has any ideas i.e. "use iconv to convert >> to A, then use DOM stuff, then use iconv to move it back to UTF8..." >> etc. i am all ears. > > Nope

Re: [PHP] please help me I try to post my question to Php.net 2-3 times

2006-02-16 Thread Hugh Danaher
If you want to preserve the blank spaces then try; str_replace(" ", " ", $contents); //   is html for blank space. HTH HTD - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Wednesday, February 15, 2006 10:26 PM Subject: [PHP] please help me I try to p

Re: [PHP] please help me I try to post my question to Php.net 2-3 times

2006-02-16 Thread Barry
Hugh Danaher wrote: If you want to preserve the blank spaces then try; str_replace(" ", " ", $contents); //   is html for blank space. HTH HTD no he don't: qote: > read text file to array string -- Smileys rule (cX.x)C --o(^_^o) Dance for me! ^(^_^)o (o^_^)o o(^_^)^ o(^_^o) -- PHP General

Re: [PHP] please help me I try to post my question to Php.net 2-3 times

2006-02-16 Thread Kim Christensen
On 2/16/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > $filename =3D "c:data.txt"; > $contents =3D file($filename); > echo $contents; > ?> > // data in text file is "1_2_3_4" < _ =3D blank> > // output is "1 2 3 4" > // I want fixed possition . please help me ? I'm not really sure

[PHP] Please help me with this. (Retriving info from mySQL database and then put it in combo box)

2004-01-31 Thread Radwan Aladdin
Hi all.. I have in my database the fields :"CourseTitle, Language1, Language2, Language3, Language4, Language5, Language6...Etc.." Now what I want to make is : By using an ActiveX Control I want to retrive the values for these fields from the database.. so for example there are many rows there(

Re: [PHP] Please help me with this. (Retriving info from mySQL database and then put it in combo box)

2004-01-31 Thread Raditha Dissanayake
Hello This is a PHP list not an activex list. Radwan Aladdin wrote: Hi all.. I have in my database the fields :"CourseTitle, Language1, Language2, Language3, Language4, Language5, Language6...Etc.." Now what I want to make is : By using an ActiveX Control I want to retrive the values for these f

<    1   2   3   4