Learning PHP

Discussion in 'PHP' started by MarkTheUser, May 5, 2012.

  1. #1
    Hello everyone. I am interested in learning PHP as i already work with HTML and CSS and i think PHP would be a nice addition to the skillset.

    I was wondering if anyone can recommend a book for a total PHP noob. PDF books are welcome but if anyone knows a title of a real book i would prefer that since it gets me away from the monitor and i find them somewhat more coherent then online books. I have found some books online but all of them presume that i have some starting knowhow about PHP which i do not so i would like something that takes you from 0 explaining what is what before actually starting with examples.
     
    MarkTheUser, May 5, 2012 IP
  2. xendurinan

    xendurinan Banned

    Messages:
    736
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    58
    #2
    W3schools(.)com is the best platform to learn PHP.
    I am already trying this to learn HTML.
    hope it'll help you out.
     
    xendurinan, May 5, 2012 IP
  3. MarkTheUser

    MarkTheUser Member

    Messages:
    206
    Likes Received:
    0
    Best Answers:
    4
    Trophy Points:
    26
    #3
    Nice i have seen that site around while searching for some html and css stuff but had no idea they had php stuff too. Cheers :)
     
    MarkTheUser, May 5, 2012 IP
  4. tridosil

    tridosil Peon

    Messages:
    477
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    You are on the right way.
    W3schools is the best , I have collected so much tutorial from mine.
    Now I'm doing practice.
     
    tridosil, May 5, 2012 IP
  5. Roxitsc

    Roxitsc Active Member

    Messages:
    46
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    61
    #5
    You should try the video tutorials from lynda.com they are really good, and start with basics up to advanced.
     
    Roxitsc, May 5, 2012 IP
  6. DennisRitchieCollective

    DennisRitchieCollective Peon

    Messages:
    44
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    One of the better sites I've seen that is not w3schools is tizag.com. It has more practical examples and gets you into php faster if you have any sort of background in c-based programming languages. I will say that it is definitely not as detailed as w3schools however.
     
  7. MarkTheUser

    MarkTheUser Member

    Messages:
    206
    Likes Received:
    0
    Best Answers:
    4
    Trophy Points:
    26
    #7
    Thank you guys ! I already started with w3 but will check the others you suggested too :)
     
    MarkTheUser, May 7, 2012 IP
  8. Microsuck

    Microsuck Greenhorn

    Messages:
    49
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    8
    #8
    I really recommend Tizag.com. Great tutorials and reference. I use it all the time when I code.
     
    Microsuck, May 7, 2012 IP
  9. za1ntc

    za1ntc Peon

    Messages:
    37
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #9
    i find w3schools really complicated, is there any easier simpler alternative?
     
    za1ntc, May 7, 2012 IP
  10. PK-Host

    PK-Host Guest

    Messages:
    109
    Likes Received:
    3
    Best Answers:
    1
    Trophy Points:
    0
    #10
    I learnt PHP by scrolling through the PHP manual looking at what functions were available at the examples provided and the comments. Then using the functions I made something, started off being really random stuff but then I refined my skill and started developing proper scripts. http://uk3.php.net/manual/en/
     
    PK-Host, May 7, 2012 IP
  11. Spudster

    Spudster Peon

    Messages:
    96
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #11
    Will i was a noob of PHP quite a few months ago and now within only 3 to 4 months i know alot about PHP, This guy knows what he is talking about and does his job will.

    http://phpacademy.org is a place to learn!
     
    Spudster, May 7, 2012 IP
  12. Microsuck

    Microsuck Greenhorn

    Messages:
    49
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    8
    #12
    I agree, PHPAcademy is a great place as well.
     
    Microsuck, May 7, 2012 IP
  13. Spudster

    Spudster Peon

    Messages:
    96
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #13
    i ALSO do tutorials but had to stop becuase of my lack of access to my home internet connection and my workplace blocks almost everything including youtube.
     
    Spudster, May 7, 2012 IP
  14. manhtv157

    manhtv157 Peon

    Messages:
    24
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    3
    #14
    w3schools.com and php.net will help u very much
     
    manhtv157, May 9, 2012 IP
  15. manhtv157

    manhtv157 Peon

    Messages:
    24
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    3
    #15
    remember that algorithm important than programming language . u shout learn about algorithm before try to code
     
    manhtv157, May 9, 2012 IP
  16. Wesleyy

    Wesleyy Peon

    Messages:
    9
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #16
    definitely don't recommend w3school, they often have incorrect info, even though they are beginner friendly. Tizag is a reliable source, but not very good for learning IMO. phpacademy is best suited for learning purposes, then you can use php.net for reference. They have great examples and community comments in every page.
     
    Wesleyy, May 9, 2012 IP
  17. FishLog

    FishLog Peon

    Messages:
    12
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #17
    I'm not a PHP expert but have developed custom web sites using my own MVC design and a front controller pattern. (stanmoremx.com.au and superfreestylemotocross.com). The latter also makes use of the Zend framework. I generally just search for examples on what I'm trying do such as string functions, regex searches and array processing etc. You'll need to decide whether you want to use PHP as an object oriented or procedural language. There are a heap of applications written in PHP such as wordpress and drupal which are live examples of how to write web applications using PHP. Drupal even has a quickstart iso with everything you need to start debugging the drupal application and see how it works.
     
    FishLog, May 10, 2012 IP
  18. seafrontsteve

    seafrontsteve Peon

    Messages:
    451
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #18
    I really like the video training from vtc
    Access to full courses cost $30 a month - but you can get the first 25 lessons for free, which will give you a great start.

    I have lots of PHP books, but when I got started found this video course much easier and quicker to learn
     
    seafrontsteve, May 10, 2012 IP
  19. everdeen

    everdeen Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #19
    I like killerphp.com - along with VTC.

    You can also preview a lot of regular books by going to http://proquest.safaribooksonline.com/ - if you know anyone in college or if you are in college you can probably access the whole site for free.
     
    everdeen, May 10, 2012 IP
  20. MarkTheUser

    MarkTheUser Member

    Messages:
    206
    Likes Received:
    0
    Best Answers:
    4
    Trophy Points:
    26
    #20
    Thank you all for the replies ! Great pointers there :) ill be swinging those php functions in no time :p
     
    MarkTheUser, May 15, 2012 IP