Could you please suggest some PHP books to read after "PHP and MySQL web development"? I know that the right answer depends on my goal, but I'm a newbie and I want obtain the big picture first. They may not be about the PHP programming language, but some useful PHP frameworks, CMS's, or best practices etc (so the question is different from this question). And it would be really nice if you could recommend a set of books to read sequentially. Any opinion is welcome. Thanks.

link|improve this question
1  
If anything, this ought to be a community wiki. Second off, what php framework book to read depends on the framework you are using. So you should read one of the questions about choosing PHP frameworks, choose one, and then ask a question like "What is the best book to read on Zend Framework?" – Lèse majesté Aug 28 '10 at 12:14
I changed it to a community wiki. And I don't need to do anything using PHP right now, I just want to know about interesting PHP stuff. How can I choose a framework if I don't know that it exists? And, sometimes I don't even know I need it either, just as Steve Jobs once said "A lot of times, people don't know what they want until you show it to them". – Hai Minh Nguyen Aug 28 '10 at 13:17
That's why I suggested looking at one of the questions on choosing a framework. They will include a rundown of different frameworks what each is good for. – Lèse majesté Aug 29 '10 at 2:28
feedback

4 Answers

up vote 3 down vote accepted

OMG! Forget real quick what you've read in that book. It's from 2003 and only recommends horribly outdated practices.

For example it seriously recommends using addslashes() or relying on (meanwhile deprecated) PHP magic_quotes, It doesn't mention mysql_real_escape_string() even one friggin time, but wanders off into various off-topic pseudo security topics.

Therefore, please read up on the PHP manuals PDO book. Professional developers don't use mysql_query() anymore. Use parameterized SQL.

link|improve this answer
It would be better to precise what book are you talking about in this answer, since the order of the answers may change according to the ratings. – MainMa Aug 28 '10 at 14:59
I would assume the book he's referring to is the one mentioned in the question, as opposed to any of the ones in the answers. – JKirchartz Sep 15 '10 at 18:10
feedback

I would recommend "PHP Objects, Patterns, and Practice".

link|improve this answer
feedback

I suggest "PHP Hacks" from O'Reilly http://oreilly.com/catalog/9780596101398

link|improve this answer
feedback

I would recommend "Structure and Interpretation of Computer Programs".

Not that it has anything to do with PHP, but any time is a good time to read that book so also after reading the book you just read. And reading about different things opens the mind and you bring new perspectives to your work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.