Best place/way/guide/book to learn PHP?

directaxcess

Senior Member
Joined
Sep 12, 2011
Messages
825
Reaction score
158
Well, don't have much else to ask as the title pretty much sums it up -- any recommendations?
 
You learn best by coding, plain reading will never be enough. I would suggest you to google for a small script. Start with something practical, say login form and you should instantly pay attention to sanitize user input.
 
Search on Google for "css-tricks php cms" click on the first link. It's a simple tutorial for creating a content management system in PHP; it really couldn't be any easier to understand than this guide. It will teach you the basics, I'd start off by trying to add features to it like authentication. This is how I first started learning PHP, like NIXMY said plain reading isn't enough - you've got to dive right into it.
 
Nettuts is also a great resource for learning php/mysql/various coding stuff.
 
"PHP 5 For Dummies" really helped me out.
 
PHP Academy, Learners Tv and for a basic start W3Schools.Also, Check PHP . net And Youtube Videos
 
I learnt coding through alot of free resources across the net. Net tuts is pretty awesome. I think one of the best I have come across that really is noob friendly is Team Treehouse. It's one of the best video series web development training courses I've come across. Really well done.
 
I've learned PHP all by myself and I've done it by need. Whenever I needed a small modification, I would try hard to do it myself, and I grew from there and today I can code pretty much everything, but I'm sure this wasn't the easiest way to learn.

If I were you, I would start looking and doing some algorithmic exercises. This is the base of every language.

After getting some done and starting understanding the process, just start doing some basic PHP exercices. Start simple, then try to integrate MySQL with it, some more advanced functions and you're be coding in no time :)
 
Back
Top