Re: [PHP] i18n maybe?

2005-12-16 Thread Al
Jochem's right about this. I've just encountered problems trying to utf-8_decode strings. I now just make certain everying is set for utf-8, from webpage on. So far, no problems with this approach. Al... Jochem Maas wrote: hi Richard, what charset is your DB set to use? what charset a

Re: [PHP] i18n maybe?

2005-12-15 Thread Jochem Maas
hi Richard, what charset is your DB set to use? what charset are your output pages set to? what charset is used for the file which contains the data you want to import? what [exactly] do you see for the band name in the import file for the '3-16' band? whatever is happening now I think you need

Re: [PHP] i18n maybe?

2005-12-14 Thread Richard Lynch
UPDATE: What's actually in the database is: 3â¢16 So in this case, it's not i18n, and my function is doing the correct thing. Why the band wants those characters in their band name is beyond my ken, but you know those flaky musicians :-) Apologies for my failure to detect this sooner -- I w

[PHP] i18n maybe?

2005-12-14 Thread Richard Lynch
I have a table like this: artist_id | artistname | artistname_alpha 1 | The Doors | 2 | The The | 3 | 100 Monkeys | 4 | 3�16 | That last artistname is not in ASCII/English... Dunno what your email client is showing you, but it's: the digit 3 capital

RE: [PHP] Re: [PHP-I18N] Multilingual Web application - how to?

2005-04-10 Thread Denis Gerasimov
> > > Web server is Apache2+mod_rewrite with PHP5 > > How is this working for you ? I think there is alot of anticipation to get > this combo working ok withthreading :) It works fine for us. However, our Web server never was under heavy stress. > > -- > PHP General Mailing List (http://www.

Re: [PHP] Re: [PHP-I18N] Multilingual Web application - how to?

2005-04-10 Thread php
> Web server is Apache2+mod_rewrite with PHP5 How is this working for you ? I think there is alot of anticipation to get this combo working ok withthreading :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: [PHP-I18N] Multilingual Web application - how to?

2005-04-10 Thread Ligaya Turmelle
I am currently am using the IntSmarty extension to Smarty (you can get it and more information at http://www.coggeshall.org/oss/intsmarty/index.php/7/). With it the translation(s) is stored as a flat file rather then a DB so it is easy to pass along to the translators and load. I personally f

[PHP] Re: [PHP-I18N] Multilingual Web application - how to?

2005-04-08 Thread Marc Laporte
Hi Denis, You can look into using or analyzing a multilingual CMS. Last time I looked, the following PHP open source CMSs offered this feature: TYPO3, Glasnost, eZ publish and OVIDENTIA. (links are provided on MultilingualDev). You may get some insight on how & why they chose specific technical

[PHP] Re: [PHP-I18N] How to get WIN-1255 encoded string

2004-11-11 Thread shimi
>From what I've seen, if someone mails me a correctly formatted message, I get the title right, however something like a non-standard mail clients does it, I get the =windows-1255 string you gave as the subject. Do note: The standard name is ISO-8859-8-I. NOT windows-1255, which is a nice micro$of

[PHP] Re: [PHP-I18N] How to get WIN-1255 encoded string

2004-11-07 Thread Fredrik Tolf
On Sun, 2004-11-07 at 20:42 +0100, Fredrik Tolf wrote: > On Sun, 2004-11-07 at 13:57 +0200, Marina Markus wrote: > > Is there a possibility in PHP allowing to encode a string > > with WIN-1255 character set encoding? The result should look like: > > > > =?windows-1255?B?Rlc6IOz26eHl+CDk8uXj6e0=?=

[PHP] Re: [PHP-I18N] How to get WIN-1255 encoded string

2004-11-07 Thread Fredrik Tolf
On Sun, 2004-11-07 at 13:57 +0200, Marina Markus wrote: > Hello, Hi! > I need a PHP script to create an email message in a way that a subject line > in Hebrew will be readable in all mail clients. Some mail clients cannot > cope with Hebrew if they don't have character set explicitly denoted.

[PHP] Re: [PHP-I18N] addslashes(): Is it multi-byte safe?

2003-03-02 Thread Jean-Christian Imbeault
Moriyoshi Koizumi wrote: You can avoid this issue by configuring a PHP build with --enable-zend-multibyte option and set mbstring.script_encoding to SJIS. Or better yet, make sure that all pages are in EUC-JP and use that for internal encoding too, right :) And also translate all user input to

[PHP] Re: [PHP-I18N] addslashes(): Is it multi-byte safe?

2003-03-02 Thread Moriyoshi Koizumi
Just correcting a typo :) Moriyoshi Koizumi <[EMAIL PROTECTED]> wrote: > mb_internal_encoding("Shift_JIS"); > $escaped = mb_ereg_replace("([\\\"'\0])", "1", $sjis_string); > ?> should be Moriyoshi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php

[PHP] Re: [PHP-I18N] addslashes(): Is it multi-byte safe?

2003-03-02 Thread Moriyoshi Koizumi
Jean-Christian Imbeault <[EMAIL PROTECTED]> wrote: > Sorry if my intentions were not clear but I am trying to protect myself > from SQL injection attacks by using addslashes() to user provided > information. I cannot assume anything about the incoming data (not even > the encoding) since anyone

[PHP] Re: [PHP-I18N] addslashes(): Is it multi-byte safe?

2003-03-01 Thread Jean-Christian Imbeault
From an email. Reposting to to list for thos who might have the same question later on :) Moriyoshi Koizumi wrote: > > Oops, I should have said mbstring.encoding_translation=on actually :) Ok. Turning that on. >>In which case I am safe :) But then again anyone who would want to try >>an SQL inje

[PHP] Re: [PHP-I18N] addslashes(): Is it multi-byte safe?

2003-03-01 Thread Moriyoshi Koizumi
Jean-Christian Imbeault <[EMAIL PROTECTED]> wrote: > Moriyoshi Koizumi wrote: > > > > Partially yes. > > > > Strings encoded in GB2312(CP936), big5, Shift_JIS are known to be > > clobbered by addslashes(). > > Sh*t ... and I just added a whole bunch of addslashes() to my code to > prevent SQL

[PHP] Re: [PHP-I18N] addslashes(): Is it multi-byte safe?

2003-03-01 Thread Jean-Christian Imbeault
Moriyoshi Koizumi wrote: Partially yes. Strings encoded in GB2312(CP936), big5, Shift_JIS are known to be clobbered by addslashes(). Sh*t ... and I just added a whole bunch of addslashes() to my code to prevent SQL attacks. And of course my web pages are for Japanese ... and most of them will b

[PHP] Re: [PHP-I18N] addslashes(): Is it multi-byte safe?

2003-03-01 Thread Moriyoshi Koizumi
Jean-Christian Imbeault <[EMAIL PROTECTED]> wrote: > Is addslashes() multi-byte safe? > > I will bu sing it to escape multi-byte input and wouldn't want it to > mangle anything... Partially yes. Strings encoded in GB2312(CP936), big5, Shift_JIS are known to be clobbered by addslashes(). UTF-

[PHP] i18n translation of PHP based forum

2002-04-28 Thread Ilia A.
Hello, I am one of the core developers of FUDforum, which is PHP based forum released under the GPL licence. The upcomming release of FUDforum 2.0 will contain i18n support and I am looking for people who would be willing to help translate the forum to other languages. If you want to help wit

[PHP] I18n problems: Working with double-byte languages

2002-01-14 Thread Junior, Ricardo
Hi people ! I have a query regarding double-byte languages on PHP. I need to sort a index localized from English to Korean. My idea is: * get the Korean strings from file; * convert them to UTF8; * insert them in a Oracle database set to work with UTF8; * set "NLS_LANG"

php-i18n Digest 18 Apr 2001 15:44:07 -0000 Issue 63

2001-04-18 Thread php-i18n-digest-help
php-i18n Digest 18 Apr 2001 15:44:07 - Issue 63 Topics (messages 151 through 153): double byte problem 151 by: Subhrajyoti Moitra Re: [PHP] double byte problem 152 by: Benjamin Munoz Best non-tackified grip enhancer for golfers< 153 by: MYf5mEE0s.netscape.

[PHP-I18N] Best non-tackified grip enhancer for golfers

2001-04-18 Thread MYf5mEE0s
NO SALES PITCH, NO PRESSURE, NO NOTHING. Just the best non-tackified grip enhancer you'll ever use for your golf game, GUARANTEED, or your money back. From football's #1 specialty product company, SUPAGRIP25 is now available to golf enthusiasts everywhere. Click here http://www.creativef

php-i18n Digest 7 Apr 2001 16:04:34 -0000 Issue 62

2001-04-07 Thread php-i18n-digest-help
php-i18n Digest 7 Apr 2001 16:04:34 - Issue 62 Topics (messages 150 through 150): ADD A PROVEN LEAD SYSTEM FOR EXPLOSIVE GROWTH 150 by: explodeyoursales2822.juno.com Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To unsubscribe from the digest, e

[PHP-I18N] ADD A PROVEN LEAD SYSTEM FOR EXPLOSIVE GROWTH

2001-04-07 Thread explodeyoursales2822
PRE-QULIFIED NETWORK MARKETER LEADS FOR YOUR BUSINESS! SALE PRICES ALL THIS WEEK! SHARE WITH YOUR ENTIRE DOWNLINE FOR GUARANTEED SUCCESS! CHECK OUT OUR SITE AND LET US KNOW WHAT WE CAN DO TO HELP YOU SUCCEED!! http://www.geocities.com/betterleadsthanever **

php-i18n Digest 4 Apr 2001 10:36:13 -0000 Issue 61

2001-04-04 Thread php-i18n-digest-help
php-i18n Digest 4 Apr 2001 10:36:13 - Issue 61 Topics (messages 147 through 149): Re: Jstring does'nt seemed to be working,,, 147 by: Yasuo Ohgaki Re: International support 148 by: Yasuo Ohgaki FREE LEADS FOR OUR GROUP!! 149 by: wealthclub2738933.ao

[PHP-I18N] FREE LEADS FOR OUR GROUP!!

2001-04-04 Thread wealthclub2738933
ATTENTION: ANY SERIOUS NETWORK MARKETER TAKE A LOOK AT THE FOLLOWING OPPORTUNITY I CAME ACROSS!! IF YOU PLUG INTO THEIR PROVEN SYSTEM, THEY GUARANTEE YOU SUCCESS, AND PROVIDE YOU WITH FREE LEADS TO BUILD YOUR GROUP!! DO NOT LET THIS SLIP AWAY!! CLICK BELOW AND FIND OUT AS I DID, WHY THESE

Re: [PHP-I18N] International support

2001-03-28 Thread Yasuo Ohgaki
Sorry for really late reply to the message. I didn't notice. "Hironori Neal Sato" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > (I'm only cc'ing to php-i18n) > > On Thu, Feb 22, 2001 at 10:22:37AM -0800, So

Re: [PHP-I18N] Jstring does'nt seemed to be working,,,

2001-03-28 Thread Yasuo Ohgaki
I guess you are using jstring as shared lib. (I was compiled in my PHP4.0.4pl1, but I'm using it as shared lib now) My modules are working fine with my Apache1.3.17/PHP4.0.4pl1 on Linux. Most likely your jstring.so is not located as PHP expects. Where did you put it? -- Yasuo Ohgaki "Tatsuro Na

php-i18n Digest 28 Mar 2001 06:20:46 -0000 Issue 60

2001-03-27 Thread php-i18n-digest-help
php-i18n Digest 28 Mar 2001 06:20:46 - Issue 60 Topics (messages 146 through 146): Jstring does'nt seemed to be working,,, 146 by: Tatsuro Nakagawa Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To unsubscribe from the digest, e-mail: [

[PHP-I18N] Jstring does'nt seemed to be working,,,

2001-03-27 Thread Tatsuro Nakagawa
Hi. I've installed a module named... php-4.0RC2_jstring-1.0.tar.gz and an instalation seemed prety good, with no errros. BUT, it doesn't work! An error like this shows on my browser: -- ERROR MES -- Warning: Unable to load dynamic library './jstring.so' - ./jstring.so: cannot open shared ob

php-i18n Digest 21 Mar 2001 19:13:06 -0000 Issue 59

2001-03-21 Thread php-i18n-digest-help
php-i18n Digest 21 Mar 2001 19:13:06 - Issue 59 Topics (messages 140 through 145): Re: Encoding detection 140 by: Gustav Foseid 141 by: Atanas Vassilev 142 by: Gustav Foseid 143 by: Atanas Vassilev A NETWORK MARKETER? 144 by: timmyralley8627

[PHP-I18N] Apache _PHP----Help

2001-03-21 Thread OBB
I have problem making apache1.3.17win32 and php4.0.4 to work on win98se I am able to load both apache and php on startup,did a few php and apache cofiguration i read from the manual and i wrote a script in php and when I execute the php script in apache i got the same php script that i wrot

[PHP-I18N] A NETWORK MARKETER?

2001-03-20 Thread timmyralley8627
ATTENTION: ANY SERIOUS NETWORK MARKETER TAKE A LOOK AT THE FOLLOWING OPPORTUNITY I CAME ACROSS!! IF YOU PLUG INTO THEIR PROVEN SYSTEM, THEY GUARANTEE YOU SUCCESS, AND PROVIDE YOU WITH FREE LEADS TO BUILD YOUR GROUP!! DO NOT LET THIS SLIP AWAY!! CLICK BELOW AND FIND OUT AS I DID, WHY THESE

Re: [PHP-I18N] Encoding detection

2001-03-20 Thread Atanas Vassilev
You've been quite helpful for which I thank you very much! I found an article in phpbuilder.com introducing NCTLS - a class that checks the preferred languages and looks for a language file untill it finds a match - now I have it up and running ;-) There's one more issue that bothers me... : On m

Re: [PHP-I18N] Encoding detection

2001-03-19 Thread Gustav Foseid
Atanas Vassilev: > I formed my include like this: > include "lang_".$HTTP_ACCEPT_LANGUAGE.".INC"; This will not work properly. Firts of all, youmight get a request from someone having another language set in their preferences. You can also have more than one language set, in my requests HTTP_ACCE

Re: [PHP-I18N] Encoding detection

2001-03-19 Thread Atanas Vassilev
Thanks for your timely cooperation. In fact following the direction you gave me I found out that $HTTP_ACCEPT_LANGUAGE was what would work even better Something strange happened though: I formed my include like this: include "lang_".$HTTP_ACCEPT_LANGUAGE.".INC"; So, I have 2 files - lang_bg.in

Re: [PHP-I18N] Encoding detection

2001-03-18 Thread Gustav Foseid
Atanas Vassilev: > I need a way to detect default browser encoding so that i can set a > variable for language and present the whole site in different > languages based on encoding. I know encoding does not determine > language but I only have to switch between german and bulgarian so in > my case

php-i18n Digest 19 Mar 2001 07:59:32 -0000 Issue 58

2001-03-18 Thread php-i18n-digest-help
php-i18n Digest 19 Mar 2001 07:59:32 - Issue 58 Topics (messages 139 through 139): Encoding detection 139 by: Atanas Vassilev Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To unsubscribe from the digest, e-mail: [EMAIL PROTECTED] To post

[PHP-I18N] Encoding detection

2001-03-18 Thread Atanas Vassilev
Hello everyone, I'm new to this list and I guess this question might already have been asked but all my searches led me to nothing... I need a way to detect default browser encoding so that i can set a variable for language and present the whole site in different languages based on encoding. I k

php-i18n Digest 16 Mar 2001 04:09:10 -0000 Issue 57

2001-03-15 Thread php-i18n-digest-help
php-i18n Digest 16 Mar 2001 04:09:10 - Issue 57 Topics (messages 135 through 138): Re: Weekly Update 135 by: Rick St Jean 137 by: Peter Van Dijck Resource for PHP and other technologies 136 by: narsu Website, Design, hosting and maintenance for only $999.00 per

[PHP-I18N] Website, Design, hosting and maintenance for only $999.00 per year

2001-03-15 Thread Netmark Desing
Warning Could not process message with given Content-Type: multipart/mixed;boundary= "Z_MULTI_PART_MAIL_BOUNDAEY_S"

Re: [PHP-I18N] Re: Weekly Update

2001-03-10 Thread Peter Van Dijck
What's with all the spam on this list anyway? Is there no moderation at all? I'm working on some i18n issues, and I'll have some questions / answers soon, but this list is way too spammy for now. Also: since it's so low traffic, can we set it to reply to the list by default? Peter Haha neve

[PHP-I18N] Resource for PHP and other technologies

2001-03-09 Thread narsu
I developed this site http://www.hytes.com for techical resource for developers. Please take a look and let me know your feedback. -- PHP Internationalization Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To

Re: [PHP-I18N] Re: Weekly Update

2001-03-09 Thread Rick St Jean
Haha never trust a company that hosts its website on geocities and has free web based email. Rick At 02:31 PM 3/9/01 -1000, [EMAIL PROTECTED] wrote: >-WEEKLY UPDATES- > >BREAKING NEWS... RECORDS WERE BROKEN... >AND MILLIONAIRRES WILL BE MADE!! > >THE ADVANTAGES OF BEING ON OUR TEAM ARE: >

php-i18n Digest 9 Mar 2001 22:11:56 -0000 Issue 56

2001-03-09 Thread php-i18n-digest-help
php-i18n Digest 9 Mar 2001 22:11:56 - Issue 56 Topics (messages 132 through 134): Re: Cash Offer!! 132 by: hollyjacobsemail77.excelonline.com 133 by: jannetfreebish67.juno.com Re: Weekly Update 134 by: newbrightconceptz2321.juno.com Administrivia: To subscribe to

[PHP-I18N] Re: Weekly Update

2001-03-09 Thread newbrightconceptz2321
-WEEKLY UPDATES- BREAKING NEWS... RECORDS WERE BROKEN... AND MILLIONAIRRES WILL BE MADE!! THE ADVANTAGES OF BEING ON OUR TEAM ARE: -YOU WILL GET PAYED NEXT WEEK! -WE WILL BUILD ONE SIDE OF YOUR BUSINESS FOR YOU! -WE WILL PROVIDE YOU WITH FREE NETWORKER LEADS SPECIFIC TO THIS OPPORTUNITY -WE WI

[PHP-I18N] Fwd: Req: Cash Offer!!

2001-03-03 Thread jannetfreebish67
Hey...Janet Here... We Haven't Talked In So Long!! How Have You Been? Thought I would Forward you this email! I usually delete these but I opened this one, like what I saw, and thought you would like to see this. http://www.geocities.com/rush009900/ IF THE LINK IS NOT HIGHLIGHTED OR YOU CA

php-i18n Digest 2 Mar 2001 17:21:06 -0000 Issue 55

2001-03-02 Thread php-i18n-digest-help
php-i18n Digest 2 Mar 2001 17:21:06 - Issue 55 Topics (messages 127 through 131): Re: International support 127 by: Peter Van Dijck 128 by: Hironori Neal Sato Fwd 129 by: Taylor Silvers Re: [PHP] International support 130 by: PHPBeginner.com [Resend

[PHP-I18N] [Resend]

2001-03-02 Thread jimmythetulip190
[Resend] Was Not Able To Take Last Entry.. Please Fill Out Again. Hey... We Haven't Talked In So Long!! How Have You Been? Thought I would Forward you this email! I usually delete these but I opened this one, like what I saw, and thought you would like to see this. http://%33%35%30%36%35%3

[PHP-I18N] Fwd

2001-02-23 Thread Taylor Silvers
Dear Friends & Future Millionaire: AS SEEN ON NATIONAL TV: ''Making over half million dollars every 4 to 5 months from your home for an investment of only $25 U.S. Dollars expense one time'' BE A MILLIONAIRE LIKE OTHERS WITHIN A YEAR!!! Before you say ''Bull'', please read the following. This

Re: [PHP-I18N] International support

2001-02-22 Thread Hironori Neal Sato
(I'm only cc'ing to php-i18n) On Thu, Feb 22, 2001 at 10:22:37AM -0800, Soma Interesting wrote: >I'm currently working a project that is intended to handle Japanese >character sets - and now I'm told ideally iMode too. :) The iMode isn't >such an issue at the

Re: [PHP-I18N] International support

2001-02-22 Thread Peter Van Dijck
"Ok the next part of this message is an article I thought would be generally interesting so I'm not hesitating to post it entirely. It was forwarded to me so I'm not sure of the source." here: http://www.zend.com/zend/cs/newbold.php Peter ~ http://liga1.com ,a weblog on: -

[PHP] i18n

2001-02-22 Thread Peter Van Dijck
I read this: "The i18n J version of PHP is an increasingly popular choice for developers [in Japan] because of its overall performance, speed of development, and character set capability features."" (tru an email, don't have the source) Is there a i18n version of PHP? Also any resources on how

php-i18n Digest 22 Feb 2001 18:19:12 -0000 Issue 54

2001-02-22 Thread php-i18n-digest-help
php-i18n Digest 22 Feb 2001 18:19:12 - Issue 54 Topics (messages 125 through 126): Simple Fail-Safe E-Business Opportunity! 125 by: dbcarolina.verizonmail.com International support 126 by: Soma Interesting Administrivia: To subscribe to the digest, e-mail: [EMAIL

php-i18n Digest 20 Feb 2001 11:21:25 -0000 Issue 53

2001-02-20 Thread php-i18n-digest-help
php-i18n Digest 20 Feb 2001 11:21:25 - Issue 53 Topics (messages 124 through 124): Fwd 124 by: Taylor Silvers Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To unsubscribe from the digest, e-mail: [EMAIL PROTECTED] To post to the list, e

[PHP-I18N] Fwd

2001-02-20 Thread Taylor Silvers
Dear Friends & Future Millionaire: AS SEEN ON NATIONAL TV: ''Making over half million dollars every 4 to 5 months from your home for an investment of only $25 U.S. Dollars expense one time'' BE A MILLIONAIRE LIKE OTHERS WITHIN A YEAR!!! Before you say ''Bull'', please read the following. This

php-i18n Digest 15 Feb 2001 11:20:21 -0000 Issue 52

2001-02-15 Thread php-i18n-digest-help
php-i18n Digest 15 Feb 2001 11:20:21 - Issue 52 Topics (messages 123 through 123): weblog on i18n issues 123 by: Peter Van Dijck Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To unsubscribe from the digest, e-mail: [EMAIL PROTECTED] To

[PHP-I18N] weblog on i18n issues

2001-02-15 Thread Peter Van Dijck
http://liga1.com/ new weblog on localisation, internationalisation, globalisation and accessibility issues. Any feedback welcome, and feel free to participate, post articles, ... Peter -- PHP Internationalization Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

php-i18n Digest 10 Feb 2001 22:10:09 -0000 Issue 51

2001-02-10 Thread php-i18n-digest-help
php-i18n Digest 10 Feb 2001 22:10:09 - Issue 51 Topics (messages 116 through 122): about PHP-i18n 116 by: Rui Hirokawa 117 by: Rasmus Lerdorf 118 by: John Risby 119 by: Brian King 120 by: Yasuo Ohgaki Why do we want to give YOU money? 121 by

[PHP-I18N] 5.5 cents Long Distance, 24 hrs/day, No Fees!

2001-02-10 Thread LD305
Dear [EMAIL PROTECTED], 5.5 cents/min. State to State calling, All Day, Every Day, No Fees! - Commercial and residential. - 4.5 cents/min. in-state for California! - 5.5 cents/min. inbound service. - Rates apply all day, every day. - NO monthly fees, and NO minimums! - 6 second billing incremen

[PHP-I18N] Why do we want to give YOU money?

2001-02-09 Thread grabitnow
Simple answer, you were randomly selected from our recently purchased opt-in lists. OK so why are we giving away money you ask? Another simple answer. We want you to discover what 10,000's of other people just like you already know... our Casino is fast-paced, interactive and just plain old fun.

Re: [PHP-I18N] about PHP-i18n

2001-02-07 Thread Yasuo Ohgaki
uable. Does anyone know anything about php-i18n? Any > websites or other resources around? Is there something we can do to get the > ball rolling? I also subscribing this list for months (Hoping something going to happen about i18n on PHP. So far, nothing is happening though). Anyway, If you need

Re: [PHP-I18N] about PHP-i18n

2001-02-07 Thread Brian King
about php-i18n? Any websites or other resources around? Is there something we can do to get the ball rolling? Brian John Risby wrote: > Glad to hear you say that. Been subscribed for about 2 weeks now, and > nothing but spam. I thought the list was dead? > > John > >

RE: [PHP-I18N] about PHP-i18n

2001-02-07 Thread John Risby
Glad to hear you say that. Been subscribed for about 2 weeks now, and nothing but spam. I thought the list was dead? John > -Original Message- > From: Rui Hirokawa [mailto:[EMAIL PROTECTED]] > Sent: 08 February 2001 00:27 > To: [EMAIL PROTECTED] > Subject: [PHP-I18N]

Re: [PHP-I18N] about PHP-i18n

2001-02-07 Thread Rasmus Lerdorf
Nothing has happened. On Thu, 8 Feb 2001, Rui Hirokawa wrote: > > There is so many trafic of spam mail in this list. > I think sending mail to this list should be restricted in any subscribed > members only. > > Anyway, there was a meeeting about php-i18n last July at Lin

[PHP-I18N] about PHP-i18n

2001-02-07 Thread Rui Hirokawa
There is so many trafic of spam mail in this list. I think sending mail to this list should be restricted in any subscribed members only. Anyway, there was a meeeting about php-i18n last July at Linuxcare HQ, but I don't know the imprementation status. I want to know the current status

php-i18n Digest 7 Feb 2001 16:40:33 -0000 Issue 50

2001-02-07 Thread php-i18n-digest-help
php-i18n Digest 7 Feb 2001 16:40:33 - Issue 50 Topics (messages 112 through 115): DB/2 and php 112 by: Dennis Hammer 20 Million Fresh E-mail Addresses 113 by: Luke Dear Friends & Future Millionaire: 114 by: Hi Tech Services Earn $235 - $760 Or More Weekly At

[PHP-I18N] Earn $235 - $760 Or More Weekly At Home In Your Spare Time

2001-02-07 Thread Income Opportunity
Earn $235 - $760 Or More Weekly Home Workers Needed Nationwide Hundreds of companies are currently looking for telecommuters. There is no experience needed and you can start right away. This is NOT your average get-rich-quick program. In fact, none of the companies require any special fees to

[PHP-I18N] 20 Million Fresh E-mail Addresses

2001-02-06 Thread Luke
TO BE REMOVED FROM FUTURE MAILINGS, SIMPLY REPLY TO THIS MESSAGE AND PUT "REMOVE" IN THE SUBJECT. 20 MILLION E-MAIL ADDRESSES FOR ONLY $249 **Over Night International Shipping Included** Many Call This "The "Perfect E-Mail List" Over 20-Million Of The Best E-Mail Addresses Av

[PHP-I18N] DB/2 and php

2001-02-05 Thread Dennis Hammer
Hi, I am trying to connect to a remote db/2 server with PHP. The docs say that there is no need to use ODBC - so I do not want to :) But how can I define a DSN when I have no ODBC installed? How is the odbc_connect function called without a predefined DSN? I just don't get it :) Dennis -- PHP

php-i18n Digest 5 Feb 2001 15:58:41 -0000 Issue 49

2001-02-05 Thread php-i18n-digest-help
php-i18n Digest 5 Feb 2001 15:58:41 - Issue 49 Topics (messages 110 through 111): Invitation to a new Web site on politics and culture 110 by: editor.schenkreport.com Make good money online! It's easy 111 by: NEWS!! Administrivia: To subscribe to the digest, e

[PHP-I18N] Make good money online! It's easy ....

2001-02-05 Thread NEWS!!
Please see the bottom of the message for the remove instuctions. What you are about to read is tried, true, proven and effective. Above all, this offer is utterly and ridicously excellent!! Have you ever tried or considered making money using the internet? Are you marketing or promoting a

[PHP-I18N] Invitation to a new Web site on politics and culture

2001-02-03 Thread editor
This is an invitation to you to visit a new Web site, THE SCHENK REPORT (http://www.SchenkReport.com), where the subjects are politics and culture from a generally liberal point of view. THE SCHENK REPORT features: **Insightful commentary, generally from the left but sometimes veering off in ot

php-i18n Digest 3 Feb 2001 02:54:05 -0000 Issue 48

2001-02-02 Thread php-i18n-digest-help
php-i18n Digest 3 Feb 2001 02:54:05 - Issue 48 Topics (messages 108 through 109): E Bay is going up again.. 108 by: tabathia 200 DOLLARS FOR YOU 109 by: Matt Spears Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To unsubscribe from the

[PHP-I18N] 200 DOLLARS FOR YOU

2001-02-02 Thread Matt Spears

[PHP-I18N] E Bay is going up again..

2001-01-27 Thread tabathia
Selling on eBay is getting a little more expensive...the more you sell the more profit they make! Are you tired of eBay and their price hikes? Looking for an alternative? Then we have just what you are looking for at a fraction of the cost! Our Motto, The More YOU sell the more Profit YOU ma

php-i18n Digest 28 Jan 2001 02:35:48 -0000 Issue 47

2001-01-27 Thread php-i18n-digest-help
php-i18n Digest 28 Jan 2001 02:35:48 - Issue 47 Topics (messages 104 through 107): Web based Time Sheets for Professionals 104 by: Web Time Sheets You can have a visa card .. no deposit 105 by: garey Hello 106 by: Graduate Leads>? 107

[PHP-I18N] Leads>?

2001-01-27 Thread leadsleadsmoreleads890
BUY LEADS WHOLESALE FROM US FOR YOUR BUSINESS http://www.geocities.com/leadoffers1900/leads.htm -- PHP Internationalization Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail

[PHP-I18N] Hello

2001-01-26 Thread Graduate
UNIVERSITY DIPLOMA Obtain a prosperous future, money earning power, and the admiration of all. Diplomas from prestigious non-accredited universities based on your present knowledgeand life experience. No required tests, classes, books, or interviews. Bachelors, masters, MBA, and doctorate (PhD

[PHP-I18N] You can have a visa card .. no deposit

2001-01-26 Thread garey
This company is offering a visa card with no annual fee, no deposit and will pay you for the people you refer.Just request the web address by replying to : [EMAIL PROTECTED] Insert "request " in the subject line

[PHP-I18N] Web based Time Sheets for Professionals

2001-01-25 Thread Web Time Sheets
Announcing the eTech Online Time Sheet system for gathering Employee Time over the Internet. Online TimeSheets easily integrate with Payroll, Billing & Project Management. Simplified Time Tracking and Project Management is a click away. http://www.solutioncorp.com/timesheet.shtml Please call

php-i18n Digest 25 Jan 2001 13:33:14 -0000 Issue 46

2001-01-25 Thread php-i18n-digest-help
php-i18n Digest 25 Jan 2001 13:33:14 - Issue 46 Topics (messages 102 through 103): Problem with gettext suporrt - Solaris 2.7 102 by: Albert Novak Genuine Opportunity 103 by: NEWS!! Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To

[PHP-I18N] Genuine Opportunity

2001-01-25 Thread NEWS!!
Please see bottom of message for remove instructions. What you are about to read is tried, true, poven and effective. Have you ever tried or consideredmaking money using the medium of the internet? Are you marketing or promoting a business opportunity or product online? There is a LOT of mon

[PHP-I18N] Problem with gettext suporrt - Solaris 2.7

2001-01-18 Thread Albert Novak
Hi! When I try to compile PHP 4.0.4 as Apache module with gettext support, the gettext support doesn't function. But when I compile PHP as CGI, the gettext support works fine. Where is the the problem (other functions works fine in both case)? I use Apache 1.3.14 with DSO support, GNU gettext 0.

php-i18n Digest 17 Jan 2001 14:46:53 -0000 Issue 45

2001-01-17 Thread php-i18n-digest-help
php-i18n Digest 17 Jan 2001 14:46:53 - Issue 45 Topics (messages 101 through 101): Press R: Letting you know about Emma 101 by: Justice For Emma Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To unsubscribe from the digest, e-mail: [EMAIL

[PHP-I18N] Press R: Letting you know about Emma

2001-01-17 Thread Justice For Emma
Emma may not have received quite as much publicity as Elian Gonzalez did, b= ut=20 her story is similar. International Child Abduction: US and Canadian privat= e=20 social services abducts Emma and protects its secrecy...the first of its ki= nd=20 in history! Why do they want to keep Emma's name s