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
didn't have Microsoft, we'd have to blame ourselves for all of >our programs crashing -- 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] 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
>Then put it together with date() like this... > >date("t", mktime(1, 1, 1, $mm, 1, $)); > >This is untested, but should work. > >--Toby > -- Maurice Rickard http://mauricerickard.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [E

[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
; > prev($arr); > echo key($arr); > >Perl has these too, they just aren't user accessible. > >-Rasmus > > >-- >PHP General Mailing List (http://www.php.net/) >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] &g

[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