Re: [PHP] Create DLL of PHP class

2008-10-03 Thread Ashley Sheridan
On Fri, 2008-10-03 at 16:55 +0200, Per Jessen wrote: > Maciek Sokolewicz wrote: > > > Per Jessen wrote: > >> Manoj Singh wrote: > >> > >>> Hello All, > >>> I have the task to create DLL of PHP class. > >>> > >>> Please advise how to do it. > >> > >> I think you'll have to look up how to write a

[PHP] 37 Pictures the World must see

2008-10-03 Thread Alex Hogan
I'm not one to send or pass along viral email, but this is one I have to pass on. They ask nothing but for you to fill in your name and email address to pass along to your Congressman. You can even opt to not be contacted again. Please take time to view this and click the "Sign" link to email yo

Re: [PHP] Php4 => Php5

2008-10-03 Thread Jim Lucas
Maciek Sokolewicz wrote: > > P.S. you are quite late with migrating, PHP 5 has been out for several > years now > As stated in many other threads. Some people do not have a choice. They are not allowed to upgrade. Or, as is in many cases, the cost of fixing everything after upgrading out weig

Re: [PHP] SESSION array problems [SOLVED]

2008-10-03 Thread Luke Slater
That's lazyness, reply all does that by itself. Luke Slater Defiance.bounceme.net/blog/ On 2 Oct 2008, at 16:15, "Daniel Brown" <[EMAIL PROTECTED]> wrote: On Thu, Oct 2, 2008 at 11:11 AM, Jay Moore <[EMAIL PROTECTED]> wrote: Now, someone show me where that is documented? http://us3.php.ne

Re: [PHP] Php4 => Php5

2008-10-03 Thread Maciek Sokolewicz
Thiago H. Pojda wrote: On Fri, Oct 3, 2008 at 11:42 AM, Operacion Control <[EMAIL PROTECTED]> wrote: Hi Lists, I am planning to migrate from Php4 to Php5 in a few days. Do anyone know which applications/services are upset with the migration? I dont have enough servers to instalt each using Php4

Re: [PHP] Php4 => Php5

2008-10-03 Thread Thiago H. Pojda
On Fri, Oct 3, 2008 at 11:42 AM, Operacion Control <[EMAIL PROTECTED]> wrote: > > Hi Lists, > > I am planning to migrate from Php4 to Php5 in a few days. > Do anyone know which applications/services are upset with the migration? > I dont have enough servers to instalt each using Php4 and then insta

Re: [PHP] Create DLL of PHP class

2008-10-03 Thread Per Jessen
Maciek Sokolewicz wrote: > Per Jessen wrote: >> Manoj Singh wrote: >> >>> Hello All, >>> I have the task to create DLL of PHP class. >>> >>> Please advise how to do it. >> >> I think you'll have to look up how to write a PHP extension. Then >> you implement your class in C as a PHP extension, a

Re: [PHP] Create DLL of PHP class

2008-10-03 Thread Maciek Sokolewicz
Per Jessen wrote: Manoj Singh wrote: Hello All, I have the task to create DLL of PHP class. Please advise how to do it. I think you'll have to look up how to write a PHP extension. Then you implement your class in C as a PHP extension, and build that as a DLL. /Per Jessen, Zürich Which i

[PHP] Php4 => Php5

2008-10-03 Thread Operacion Control
Hi Lists,   I am planning to migrate from Php4 to Php5 in a few days. Do anyone know which applications/services are upset with the migration? I dont have enough servers to instalt each using Php4 and then install Php5 to test. I mean sendmail, qmail, joomla, egroupware, hordeetc   Thanks in a

Re: [PHP] Create DLL of PHP class

2008-10-03 Thread Per Jessen
Manoj Singh wrote: > Hello All, > I have the task to create DLL of PHP class. > > Please advise how to do it. I think you'll have to look up how to write a PHP extension. Then you implement your class in C as a PHP extension, and build that as a DLL. /Per Jessen, Zürich -- PHP General Maili

Re: [PHP] Re: SESSION array problems

2008-10-03 Thread Nathan Rixham
Micah Gersten wrote: > You really should get up to speed on PHP 5. Micah Gersten wrote: I was referring to Nathan's examples which you cut out of the post. function save_to_session( ) { global $userids , $first , $last; $_SESSION['user_id'] = &$userids; $_SESSION['first_name'] = &$first; $

[PHP] Create DLL of PHP class

2008-10-03 Thread Manoj Singh
Hello All, I have the task to create DLL of PHP class. Please advise how to do it. Regards, Manoj Kumar Singh

Re: [PHP] date_default_timezone_set and Time Zones

2008-10-03 Thread Waynn Lue
> > Is it daylight savings time in LA on 31 January? > Wow, yeah. That makes sense, for some reason I was thinking of it in terms of today, but of course that can't be right. Thanks for that clarification, not sure what I was thinking. :)

Re: [PHP] a link in php generated mail

2008-10-03 Thread Per Jessen
Sjef wrote: > Hallo, > I have an link in a php generated email that does not work. I tried > adding http:// but with no result. It says the link is blocked. I > created the mail with html formatting. Who is "It" (in "It says the link is blocked.") and how does it say it is blocked? /Per Jessen,

Re: [PHP] a link in php generated mail

2008-10-03 Thread Richard Heyes
> I have an link in a php generated email that does not work. I tried adding > http:// but with no result. It says the link is blocked. I created the mail > with html formatting. > I use pear email. Is there anything I have to consider to make this work? Set the content type of the email to text/h

[PHP] a link in php generated mail

2008-10-03 Thread Sjef
Hallo, I have an link in a php generated email that does not work. I tried adding http:// but with no result. It says the link is blocked. I created the mail with html formatting. I use pear email. Is there anything I have to consider to make this work? Thanks, Sjef -- PHP General Mailing Li

Re: [PHP] date_default_timezone_set and Time Zones

2008-10-03 Thread Per Jessen
Waynn Lue wrote: > I'm using date_default_timezone_set("America/Los_Angeles") in my code, > then I output it like > > date("m/d/y, H:i:s, O", ); > > But even though it's daylight savings time in Los Angeles, I get > output like > > [01/31/08, 23:00:00, -0800] > > Shouldn't it instead be -0700?