[PHP] Re: php+oracle

2002-05-29 Thread Maurice Kevenaar
Try to install the windows 2000 support tools and check width the Dependency Walker the file and ll see witch file is missing! -- Maurice Mauricio [EMAIL PROTECTED] schreef in bericht [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi for all. I have php+apache+win2000+client orac

[PHP] PFDLib Function Problem

2002-05-19 Thread Maurice Kevenaar
,etc,etc pdf_setfont($pdf, $font, 20); // till here it's ok etc,etc,etc $font2 = pdf_findfont($pdf, bmocrb, winansi, 1); // Here I get no error or any warning if ($font2) { pdf_setfont($pdf, $font2, 12); } -- Maurice -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] Session + IIS

2002-05-07 Thread Maurice
that session management doesn't work fine for certain PHP versions. Does anyone know what the status of these problems are and which PHP version has stable session management on a windows platform. Greets, Maurice -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] Sessions and Load Balancing

2002-04-25 Thread Uijlenbroek, Maurice
thought that the SID returned to every browser (client), so when I store the session on my domein, every server can find the ID, right? Please respond to my emailaddress directly ([EMAIL PROTECTED]). Thanks in advance! Maurice Uijlenbroek

[PHP] Error in PHP installation/execution

2002-02-11 Thread Maurice Barnes
be getting this error and how I could correct it. Regards, Maurice -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Example high-profile PHP sites

2001-07-31 Thread Maurice Rickard
) Thanks again to all who have helped! -Maurice At 1:58 AM -0700 7/31/01, Ralph Guzman wrote: here are a few: http://www.marketplayer.com: they provide the real-time stock market simulations for sites like etrade.com and smartmoney.com that have these games. http://www.chek.com/ -- Maurice Rickard

[PHP] Example high-profile PHP sites

2001-07-26 Thread Maurice Rickard
at http://php.datalogica.com/sites.php which, while helpful, seems a bit dated. Does anyone have some favorite examples that aren't on this list? I've been preparing other arguments as well, but the all the cool people are doing it examples will help. Thanks! -- Maurice Rickard http

Re: [PHP] Example high-profile PHP sites

2001-07-26 Thread Maurice Rickard
_ is using this PHP thing? Wow! They know what they're doing, so we'd better use it, too! Does this help frame things? Thanks for the suggestions! -Maurice At 10:59 AM -0600 7/26/01, Unni wrote: If every one is giving their website about mine http://www.malayalamovies.com -- Maurice Rickard

Re: [PHP] Example high-profile PHP sites

2001-07-26 Thread Maurice Rickard
Good point. I'm working on that data as well, but I thought getting a few marquee names wouldn't hurt matters. But yeah, functionality (which is why I'm using it in the first place) should trump popularity. -Maurice At 11:23 AM -0700 7/26/01, John Meyer wrote: I'd probably suggest using

[PHP] Re: Example high-profile PHP sites

2001-07-26 Thread Maurice Rickard
. And there's the old business saw that nobody was ever fired for doing whatever everybody else was doing. -- Maurice Rickard http://mauricerickard.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

[PHP] Potential upcoming PHP development project

2001-07-23 Thread Maurice Rickard
developer immediately--so if you are interested, please respond as soon as you can. Best regards, Maurice -- Maurice Rickard http://mauricerickard.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: [PHP] date(t)

2001-01-18 Thread Maurice Rickard
It does indeed work. Thanks, Toby! -Maurice At 10:47 PM -0500 1/18/01, Toby Butzon wrote: You might try this: Arguments for mktime for my reference and for yours are ... int mktime (int hour, int minute, int second, int month, int day, int year [, int is_dst]) Then put it together with date

[PHP] Weird nested while loop problem

2001-01-17 Thread Maurice Rickard
quot;; } } // end while relations loop printf("%sbr\n", $thedisplay); } //end the child results while loop Thanks for any suggestions! -- Maurice Rickard http://mauricerickard.com/ -- PHP General 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: [EMAIL PROTECTED]

Re: [PHP] Weird nested while loop problem

2001-01-17 Thread Maurice Rickard
if ($thevalue == $thischild) { echo " checked"; } } // end while for relations loop reset($relationsresult); Thanks again for your help so far! Maurice At 2:00 PM -0800 1/17/01, Rasmus Lerdorf wrote: What I'm getting is that the inner while loop executes on t

Re: [PHP] Weird nested while loop problem

2001-01-17 Thread Maurice Rickard
ks for the help, btw! -Maurice -- Maurice Rickard http://mauricerickard.com/ -- PHP General 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: [EMAIL PROTECTED]

Re: [PHP] Weird nested while loop problem

2001-01-17 Thread Maurice Rickard
At 5:22 PM -0500 1/17/01, Ignacio Vazquez-Abrams wrote: Um, no. $relationsresult isn't an array, it's a MySQL result resource. Use mysql_data_seek() instead. Ah! I get it! mysql_data_seek($relationsresult,0); does what I need it to do. Thanks, everyone! -Maurice -- Maurice