Want to learn PHP programming.

sickamoreleaves

New member
Nov 1, 2009
20
0
1
I want to learn some PHP programming, but i never know where
to get started. Can someone please help me with a few links as to
some good sites to get started ?

Maybe some good tutorials or the like ?

Cheers! FF
 


Sorry... but if you can't figure out how to learn to program then actually programming and solving problems is beyond your ability. It may be harsh but it's the truth. Programming is about problem solving.
 
PHP and MySQL Web Development (4th Edition) [Paperback]
Luke Welling (Author), Laura Thomson (Author)

Read this book. It's well written and takes a phased approach. It's also the best reviewed book on Amazon for PHP Development.
 
Best post of the day.

Really? Because one main utility of forums is to help answer questions (solve problems). Of course you can Google "how to learn PHP" and find resources, but what's wrong with asking a forum of programmers the best resources/step-by-step guides they've used to learn programming?

OP: Codeacademy is good, W3schools and Tizag are other good resources. My best suggestion is to first figure out what you want to code, and then troubleshoot each step using searches on Stackoverflow. Googling random questions like "how to grab a key from array" will lead you to a stackoverflow, which will lead to a topic you can then learn at Codeacademy/W3/etc.
 
[ame=http://www.youtube.com/watch?v=xzkWTcDZFH0]11Foot8 bridge crash compilation - YouTube[/ame]
 
Really? Because one main utility of forums is to help answer questions (solve problems). Of course you can Google "how to learn PHP" and find resources, but what's wrong with asking a forum of programmers the best resources/step-by-step guides they've used to learn programming?

I can only speak from my own experience, since I don't know too many programmers this could not be too common experience but I assume it is anyway. But for me 90% of learning php was trying to find help by googling for people that already solved the problem I was facing. Sure I learned from video courses and read tutorials on the net but that only gets you so far.

So now we have OP here that wouldn't even take 5 minutes to do a quick search to find an answer using google. This thread has been open literally thousands of times and there are hundreds of blog posts dedicated to answering it. He'd find better and more detailed posts. It's just an indication that if he's too lazy to find this, how will he ever find the energy/will to do the same task dozens and dozens of times a day for weeks once he gets into programming.
 
I can only speak from my own experience, since I don't know too many programmers this could not be too common experience but I assume it is anyway. But for me 90% of learning php was trying to find help by googling for people that already solved the problem I was facing. Sure I learned from video courses and read tutorials on the net but that only gets you so far.

So now we have OP here that wouldn't even take 5 minutes to do a quick search to find an answer using google. This thread has been open literally thousands of times and there are hundreds of blog posts dedicated to answering it. He'd find better and more detailed posts. It's just an indication that if he's too lazy to find this, how will he ever find the energy/will to do the same task dozens and dozens of times a day for weeks once he gets into programming.

^This
 
1.Get a copy of Wordpress
2.Figure out what you want to make it do different
3.?????
4. you are now a programer and can sell services on Odesk
 
PHP resources such as books and Tizag/Codeacademy are great (mainly just to get your feet wet), but you also need a project of your own in order to learn programming. You can read a PHP book front to back and not be able to recall any of it, if you didn't write any code of your own along the way. Preferably something challenging.

When I first was learning Ruby I wrote a simple to do list app, and kept a list of features I wanted to add to it. With every feature I added to my script, I learned something new about the language. When learning Python, I wrote a chat bot. You get the idea.

As you build your script and encounter questions, reference your book or Tizag, or go search Stack Overflow (your most valuable resource, fyi).

Read other people's source code. Go to github and find some random, simple, PHP script to read (avoid complex scripts like Wordpress for this). Go down line-by-line and try to figure out what each line is doing. You'll learn some cool things you won't find in a book this way.