Affiliate Marketing
Forum Search

Reply
 
LinkBack Thread Tools Display Modes

  #1 (permalink)  
Old 22-07-06
Stellar's Avatar
Registered User
 
Join Date: Apr 2006
Posts: 714
Thanks: 1
Thanked 5 Times in 5 Posts
Stellar is an unknown quantity at this point
  Best PHP & MySQL

Hi,

Do anyone have any suggestions on the best PHP & MySQL book for a beginner? There are a few out there and I am just trying to decide.

It needs to be a beginners guide, but one that goes into a fair bit of depth. I don't think PHP & MySQL for Dummies cuts it as it does not teach you how to programme forums & shopping carts, which I would like to learn how to do.

I did see a book in Borders that covers that, but I can't remember what it is called.

Any advice is appreciated!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 22-07-06
eskimo's Avatar
Registered User
 
Join Date: Aug 2003
Posts: 659
Thanks: 0
Thanked 0 Times in 0 Posts
eskimo is an unknown quantity at this point
PHP and Mysql Web Development by Welling and Thomson is a pretty good starting point. Once you've got a basic understanding, it's probably best to look at online tutorials that address the specific tasks you are trying to achieve.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 22-07-06
Stellar's Avatar
Registered User
 
Join Date: Apr 2006
Posts: 714
Thanks: 1
Thanked 5 Times in 5 Posts
Stellar is an unknown quantity at this point
Quote:
PHP and Mysql Web Development by Welling and Thomson is a pretty good starting point. Once you've got a basic understanding, it's probably best to look at online tutorials that address the specific tasks you are trying to achieve.
Thanks for the reply. It does have some excellent reviews in Amazon. The only thing is, this book covers PHP 5 and my hosting company (Clook) only has PHP 4. Do you think that will be a problem? Is PHP 5 totally different to PHP 4, or is it just a matter of missing out on some of the features of PHP 5?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 22-07-06
phildarv's Avatar
Registered User
 
Join Date: Sep 2004
Location: Knaresborough
Posts: 475
Thanks: 0
Thanked 0 Times in 0 Posts
phildarv is an unknown quantity at this point
you can try php5 on clook though. see this thread on clook forum:

http://www.clook.info/forum/showthre...highlight=php5
__________________
Phillip
<a href="http://www.atomic78.com ">Gift shop 4 sale</a>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #5 (permalink)  
Old 22-07-06
Stellar's Avatar
Registered User
 
Join Date: Apr 2006
Posts: 714
Thanks: 1
Thanked 5 Times in 5 Posts
Stellar is an unknown quantity at this point
Quote:
Please note that this installation of PHP version 5 is meant as a testing environment and we do not recommend using it in for a live/production website. If you do this you do so at your own risk and should you require support involving the site we will insist that it is reverted back to PHP4 before providing this.
This bit doesn't fill me with confidence though! :eek:

Maybe I should just learn PHP4 for now?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 22-07-06
Registered User
 
Join Date: May 2005
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
talentguy is an unknown quantity at this point
I'm thoroughly recommend "Build Your Own Database Driven Website Using PHP & MySQL" by Kevin Yank.

I bought it and expected it to be very basic. Although it was basic, it built up to very complex scenarios, such as designing a web cart and programming information using cookies, etc.

Definitely worth a look! Plus you can download the basic first 4 chapters for free.

Hope that helps.

Gary
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 23-07-06
Registered User
 
Join Date: Jun 2005
Posts: 972
Thanks: 0
Thanked 0 Times in 0 Posts
Itchy is an unknown quantity at this point
Quote:
Originally Posted by Stellar
It needs to be a beginners guide, but one that goes into a fair bit of depth. I don't think PHP & MySQL for Dummies cuts it as it does not teach you how to programme forums & shopping carts, which I would like to learn how to do.

Learn to stand up and walk before you run

Dummies should be fine for you, you need to know the basics of php once youve grasped that then theres plenty of free online tutorials thatll help you to learn to run
__________________
I'm not the Messiah!
I say You are, Lord, and I should know. I've followed a few.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #8 (permalink)  
Old 23-07-06
Stellar's Avatar
Registered User
 
Join Date: Apr 2006
Posts: 714
Thanks: 1
Thanked 5 Times in 5 Posts
Stellar is an unknown quantity at this point
Quote:
Dummies should be fine for you, you need to know the basics of php once youve grasped that then theres plenty of free online tutorials thatll help you to learn to run
True true. I do like to get ahead of myself sometimes!

In regards to PHP4 vs PHP 5.. as discussed earlier, Clook is testing PHP5 but does not support it.. if I get a book on PHP5 will I run into trouble? Or do you think I should just get a PHP4 book and go from there?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 23-07-06
Registered User
 
Join Date: Feb 2006
Location: Gillingham
Posts: 503
Thanks: 0
Thanked 0 Times in 0 Posts
Donk is an unknown quantity at this point
The main differences between PHP4 and PHP5 are:

MySql is no longer bundled in PHP5 and has been replaced by MySqlite, however MySql should be available on PHP5 servers for a while until it is eventually phased out.

PHP5 has much better handling of XML files although the old PHP4 functions are still included in PHP5

PHP5 has IPv6 support for the new IP address system which will eventually replace the present IP4 (eg 128.10.10.10) system.

PHP5 has better support for OOP( object orientated programing)- Classes methods and objects etc.

For a quick tutorial on PHP4 try here or W3schools

Bob
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 24-07-06
Stellar's Avatar
Registered User
 
Join Date: Apr 2006
Posts: 714
Thanks: 1
Thanked 5 Times in 5 Posts
Stellar is an unknown quantity at this point
Thanks Bob, that helps.

I have taken Gary's recommendation and ordered "Build Your Own Database Driven Website Using PHP & MySQL" by Kevin Yank.

Now let the fun begin!

Thanks all for your help
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #11 (permalink)  
Old 25-07-06
We won the cup
 
Join Date: Jan 2004
Location: South London
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Adam_C is an unknown quantity at this point
Good call. I bought the Kevin Yank book and started working my way through it a year or 2 ago.

Whilst I got distracted before getting through it all, I got enough out of it for my needs, and can always go back in if need be.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #12 (permalink)  
Old 25-07-06
Registered User
 
Join Date: Dec 2005
Posts: 54
Thanks: 0
Thanked 0 Times in 0 Posts
monty is an unknown quantity at this point
The SAMS teach yourself range is very good.
Particularly if it's covering open-source things such as PHP MySQL Apache etc. [Where it is covering official comercial software the comments are sometimes more restrained when it comes to oddities!]

That said the teach yourslef "PHP, MySQL and Apache" book doesnt' go into much detail at all, the ones that just look at PHP/Mysql are better.

But you can get most things online these days for free. There are sites and sites, with tutorial after tutorial.
Also the official php documentation at