[PHP-WIN] Re: Mail sent an hour before I send it

2003-06-19 Thread Peter Misun
to the mail server > > directly and send mail the time is correct, so it appears to have > > something to do with PHP. Does anyone have any thoughts on this? > > =20 -- Mgr. Peter Misun MicroStep-MIS, Ilkovicova 3, 841 04 Bratislava, Slovakia tel: +421/ 2/ 602 00 127, 111, fax

[PHP-WIN] Re: doing $mc=new myclass(); or $mc= &new myclass(); ?

2003-06-06 Thread Peter Misun
here is answer I was waiting for: Per Lundberg wrote: > On Fri, 2003-06-06 at 14:17, Peter Misun wrote: > > > but I couldn't find case, in which is better to use the first form > > why should I have copy, if there is an original where I'm not having > > con

[PHP-WIN] Re: install PHP 431 on Windows 2003 server

2003-06-06 Thread Peter Misun
. > > Simos Anagnostakis > Dept. of Primary Education > University of Crete > Campus Rethymno 74100 > tel +302831077623 fax 77596 -- Mgr. Peter Misun MicroStep-MIS, Ilkovicova 3, 841 04 Bratislava, Slovakia tel: +421/ 2/ 602 00 127, 111, fax: +421/ 2/ 602 00 180 -- PHP Windows Mai

Re: [PHP-WIN] doing $mc=new myclass(); or $mc= &new myclass(); ?

2003-06-06 Thread Peter Misun
but I couldn't find case, in which is better to use the first form why should I have copy, if there is an original where I'm not having control over it ?!? 5o Per Lundberg wrote: > On Fri, 2003-06-06 at 11:23, Peter Misun wrote: > > need help: > > what do you sugg

Re: AW: [PHP-WIN] doing $mc=new myclass(); or $mc= &new myclass(); ?

2003-06-06 Thread Peter Misun
Sven Schnitzke wrote: > This is conceptual. If you want to know if &new() is 'cheaper' > than new() you might want to ask the developers list or take > a look at execution time for 1 [&]new()s or so. yes, this is what I want to know I'll ask in php.dev developers list forum 5o -- PHP W

[PHP-WIN] Re: doing $mc=new myclass(); or $mc= &new myclass(); ?

2003-06-06 Thread Peter Misun
why? there is written, that not using & sign will assign only copy ov object created - that means, you have one object 2 times in memory (in the first case) 5o Dvdmandt wrote: > I do believe you want the first version... > "Peter Misun" <[EMAIL PROTECTED]> skrev i

[PHP-WIN] doing $mc=new myclass(); or $mc= &new myclass(); ?

2003-06-06 Thread Peter Misun
need help: what do you suggest to use: $mc = new myclass(); or $mc = &new myclass(); because in any tutorial I can see the first form, but on page "what references do" in PHP manual I found out the second form so? 5o -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, vi

[PHP-WIN] Re: header problem with IIS

2003-05-28 Thread Peter Misun
problem was with switch in W2k server there is - Performance Options -> Application response - and it can be switched to "Applications" or "Background services" after switching from second one to first one (app...), everything works fine now (without CGI Error)