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
I recommend The Manual. www.php.net/manual/en/ Honestly it's the best book you can read in the beginning. There are tons of examples and comments and you'll know exactly what's going on. No, you don't have to read every function, but at least read the first page for each category, that'll give y

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, I

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