RE: [PHP] Newbie Book & Database Question

2002-04-25 Thread Chris Montgomery
eb.com Web Development, Web Project Management, Software Sales 210-490-3249/888-745-7603 > -Original Message- > From: Denis L. Menezes [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 25, 2002 9:02 AM > To: [EMAIL PROTECTED]; David Garcia Aristegui > Subject: Re: [PHP] Newbie

Re: [PHP] Newbie Book & Database Question

2002-04-25 Thread Denis L. Menezes
2 9:20 PM Subject: Re: [PHP] Newbie Book & Database Question > Try "PHP and MySQL Web Development", by Luke Welling and Laura Thompson; only one thing, maybe you'll have troubles with the form variables, put this code at the beginning of all book examples > foreach (array_mer

Re: [PHP] Newbie Book & Database Question

2002-04-25 Thread Erik Price
On Thursday, April 25, 2002, at 09:20 AM, David Garcia Aristegui wrote: > Try "PHP and MySQL Web Development", by Luke Welling and Laura > Thompson; only one thing, maybe you'll have troubles with the form > variables, put this code at the beginning of all book examples > foreach (array_merge

Re: [PHP] Newbie Book & Database Question

2002-04-25 Thread esivertsen
I started with "PHP bible" by Converse/Park on IDGbooks. Never needed anything more; used the manual and the web afterwards; for reference and tips. Another nice book is Wrox' "professional PHP programming". All the best, Eivind -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] Newbie Book & Database Question

2002-04-25 Thread 1LT John W. Holmes
. - Original Message - From: "Chris Montgomery" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 25, 2002 9:02 AM Subject: [PHP] Newbie Book & Database Question > Howdy, > > I have been developing with ColdFusion for nearly five years and

RE: [PHP] Newbie Book & Database Question

2002-04-25 Thread Steve Bradwell
Professional PHP Programming from WROX publishing is a good book too. I use php and MySQL. -Steve. -Original Message- From: Chris Montgomery [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 25, 2002 9:02 AM To: [EMAIL PROTECTED] Subject: [PHP] Newbie Book & Database Question Howdy

Re: [PHP] Newbie Book & Database Question

2002-04-25 Thread David Garcia Aristegui
Try "PHP and MySQL Web Development", by Luke Welling and Laura Thompson; only one thing, maybe you'll have troubles with the form variables, put this code at the beginning of all book examples foreach (array_merge($_POST,$_GET) as $key=>$val) { global $$key; $$key=$val; } Co

[PHP] Newbie Book & Database Question

2002-04-25 Thread Chris Montgomery
Howdy, I have been developing with ColdFusion for nearly five years and want to learn PHP. For someone who has never done anything with PHP before, what *one* book would you recommend as a good primer to get started learning PHP? Also, do most PHPers use MySQL as your database when building dyna