EvilZone

Programming and Scripting => Web Oriented Coding => Topic started by: shimomura on July 13, 2014, 03:48:16 AM

Title: PHP Knowledge Acquisition.
Post by: shimomura on July 13, 2014, 03:48:16 AM
As to make the most of my time, I call upon your all powerful and knowledgeable minds to suggest to me the best literature we possess in our library on learning PHP. I'm ok with it containing info on mySQL as they are often coupled in education texts.
Title: Re: PHP Knowledge Acquisition.
Post by: Phage on July 13, 2014, 10:06:52 AM
http://php.net/docs.php

It's as simple as that.
Title: Re: PHP Knowledge Acquisition.
Post by: Kulverstukas on July 13, 2014, 10:35:29 AM
http://php.net/docs.php

It's as simple as that.
ditto.
Title: Re: PHP Knowledge Acquisition.
Post by: Schalla on July 13, 2014, 12:40:25 PM
I wouldn't call the Docs a good repo to start learning PHP. The Docs are just a collection of commands with sometimes
incredible bad examples.

In the eBook Index is a link to:
Programming PHP, 3rd Edition
(https://evilzone.org/ebooks/ebook-index/)

Start with that. It should give you a faster introduction than reading every Doc Article.

CodeStyle Guidelines:
http://www.php-fig.org/psr/psr-1/ (Read 0-5, links on the right side)

This is - in my eyes - the most used Style Standard for PHP.
Title: Re: PHP Knowledge Acquisition.
Post by: DaFunk on September 05, 2014, 04:46:20 AM
As to make the most of my time, I call upon your all powerful and knowledgeable minds to suggest to me the best literature we possess in our library on learning PHP. I'm ok with it containing info on mySQL as they are often coupled in education texts.

I'll suggest this video series: https://www.youtube.com/watch?v=kY5P9sZqFas

That's what really gave me the conceptual 'light bulb' moment. The rest has been hands on learning and just looking things up as I go. I use W3Schools PHP section for reference quite often, too: http://www.w3schools.com/php/php_intro.asp

Good luck.
Title: Re: PHP Knowledge Acquisition.
Post by: shimomura on November 09, 2014, 07:16:00 AM
Thanks. All of these have been helpful.