[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+apac

[PHP] PFDLib Function Problem

2002-05-19 Thread Maurice Kevenaar
pdf_setfont($pdf, $font, 12); } etc,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] Session + IIS

2002-05-07 Thread Maurice
lem reports about PHP and IIS, stateing 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

[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
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
earch) 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://w

[PHP] Re: Example high-profile PHP sites

2001-07-26 Thread Maurice Rickard
as information is repeated, nuances of argument drop out, I figure that the names may remain. 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

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

Re: [PHP] Example high-profile PHP sites

2001-07-26 Thread Maurice Rickard
his: "You mean _ 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://w

[PHP] Example high-profile PHP sites

2001-07-26 Thread Maurice Rickard
list 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!

[PHP] Potential upcoming PHP development project

2001-07-23 Thread Maurice Rickard
ed to identify a qualified PHP 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

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]) >

[PHP] date("t")

2001-01-18 Thread Maurice Rickard
end.) Here's my code, if you'd like to make suggestions: $ver_date = checkdate($date_month, $date_day, $date_year); if ($ver_date) { $safedate = $date_year."-".$date_month."-".$date_day; } else { //reset their date_day somehow } Thanks for a

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!

Re: [PHP] Weird nested while loop problem

2001-01-17 Thread Maurice Rickard
MySQL result resource. Use >mysql_data_seek() instead. OK, could this be why I'm getting the same error message for $relationsrow? Thanks 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
quot;childsku"]; 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 gett

[PHP] Weird nested while loop problem

2001-01-17 Thread Maurice Rickard
iables... Parent: %s\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]

[PHP] comparing two arrays in PHP3

2001-01-16 Thread Maurice Rickard
nsquery) or die(mysql_error()); /* relationsresult is the other array I think I need; but I don't know what to do with it */ ?> form code goes in here, snipped for space/relevance %s\n", $row["flavorsku"], $row["flavor"]); } Any ideas/thoughts or pointers to appr