36 replies
I need to learn PHP - how do I start out and what do I need?
#php
  • Profile picture of the author Bruce Hearder
    You can learn PHP programming without spending a cent. All you have to do is go down to your local local library and get a few books on PHP.

    Then go to http://www.apachefriends.org/en/index.html and download yourself a copy of XAMPP!

    This will let you setup a development platform for local testing.
    It will install a copy of :
    Apache web server,
    PHP,
    MySQL plus phpMyAdmin

    Using this lot, you can develop away to your hearts content.

    I hope this helps

    Bruce
    {{ DiscussionBoard.errors[1291102].message }}
  • Profile picture of the author Steven Fullman
    If you're a visual learner, Leigh Mac over at PHP Video Tutorials - Like to watch the video instead of reading the book? has some great free (and paid for) videos. He actually manages to make PHP entertaining!

    HTH,
    Steve
    Signature

    Not promoting right now

    {{ DiscussionBoard.errors[1295280].message }}
  • Profile picture of the author TristanPerry
    Whilst you can learn 100% for free online, I personally recommend buying a book, especially if you haven't done any scripting language before.

    PHP can be tricky at first and there's a lot to take in; hence why I recommend learning it via a book.
    Signature
    Plagiarism Guard - Protect Against Content Theft
    {{ DiscussionBoard.errors[1295474].message }}
  • Profile picture of the author devilishsaint
    i think w3schools is also having good resources about php you should start from beginner level and move on.
    {{ DiscussionBoard.errors[1295482].message }}
  • Profile picture of the author shaddai
    I got a book...and learned enough to be dangerous. At that point I just decided I was going to code a project & when I ran into something I didn't know how to do, I just went googling to find out.

    Some people just have to learn by actually doing it, and I'm one of them.

    Todd
    {{ DiscussionBoard.errors[1296928].message }}
    • Profile picture of the author TristanPerry
      Originally Posted by shaddai View Post

      I got a book...and learned enough to be dangerous. At that point I just decided I was going to code a project & when I ran into something I didn't know how to do, I just went googling to find out.

      Some people just have to learn by actually doing it, and I'm one of them.

      Todd
      I was the same A book can teach you quite a lot, but you also need to then go out and create some basic scripts too (as some of the books do suggest, to be fair)
      Signature
      Plagiarism Guard - Protect Against Content Theft
      {{ DiscussionBoard.errors[1297362].message }}
  • Profile picture of the author lolito
    Originally Posted by bigcat1967 View Post

    I need to learn PHP - how do I start out and what do I need?
    Just follow those suggested by our Warriors here, just read the book about PHP while you reading just type the source code in to your PC to easy understand how does PHP works.
    {{ DiscussionBoard.errors[1298096].message }}
  • Profile picture of the author AndyBlackSEO
    I agree with Todd. Buy a couple of different books. Say a reference type book and one that has basic scripts, fuctions and tutorials. Then start from the bootom up. Once you have learnt some of the basics (a matter or hours / days) just use what you have learnt to write a couple of your own scripts. It doesn't matter what these scripts do, as long as you write them and they work.

    Then keep learning more. Expect some headaches along the way but when you solve a problem or find an error it's a good feeling.

    Make sure you have error reporting enabled.

    Good luck.
    Signature
    [FREE SEO TOOL] Build 29 Effective, High Authority Backlinks that Will Increase Your Google Rankings in 2020... CLICK HERE ...
    ... Instant backlinks that can get you results within 24-72hrs.
    {{ DiscussionBoard.errors[1300938].message }}
  • Profile picture of the author SimonFairbairn
    I third Andy and Todd - books are a good starting point. I like the PHP/MySQL bible, but even the PHP for Dummies books are pretty decent.

    Also, the Lynda dot com training videos are really good - lots of good practice and their latest ones are all about the Object Orientated Programming.

    Abook or a training course is a lot more structured than reading a bunch of websites - but set up a testing server on your local machine like Bruce said as soon as possible and get started.

    As for websites, w3schools is a good starting point, and net dot tutsplus dot com often have well written, comprehensive tutorials.

    Programming PHP and MySQL is a lot of fun! Good luck!

    Si
    {{ DiscussionBoard.errors[1301252].message }}
  • Profile picture of the author ninjawarrior
    I'd go with shaddai's approach. You learn a lot about php by actually doing it, I believe.

    Makes me reflect how much learning php is actually very close to learning IM, the 'learning via doing' route.

    Hope that helps.
    {{ DiscussionBoard.errors[1302134].message }}
  • Profile picture of the author Ross Dalangin
    Do you have a background in Programming? Try to visit w3schools.com and buy a PHP book on the nearest bookstore on your town. After that, install XAMPP of apache friends so that you have PHP, Apache and Mysql on your PC to test what you've learned on the book.
    {{ DiscussionBoard.errors[1302162].message }}
  • Profile picture of the author jackgunale
    if you want to learn PHP,you can visit more site related put keyword PHP in search engine of google , you will get e-book and site also,,i also done this like there will be get tutorial.

    thanks
    {{ DiscussionBoard.errors[1306174].message }}
  • Profile picture of the author RichPirate
    Check out the "Learning" series of books published by O'Reilly. "Learning PHP" is good and takes you step by step through the process.
    {{ DiscussionBoard.errors[1306968].message }}
  • Profile picture of the author Steve Wells
    There are some great tutorials on this website....

    Here..
    Signature
    Need Custom Graphics Work? - Message Me For A Design Quote!
    {{ DiscussionBoard.errors[1313209].message }}
  • Profile picture of the author e.calabio
    What code is used to make a visitor counter in php? I'm not sure what it's called, a counter that holds the number of all visitors who went to your website.
    {{ DiscussionBoard.errors[1357178].message }}
    • Profile picture of the author AndyBlackSEO
      Originally Posted by e.calabio View Post

      What code is used to make a visitor counter in php? I'm not sure what it's called, a counter that holds the number of all visitors who went to your website.
      You can get free counters from the web but generally this can be coded very easily with php. You would basically set up a mysql database and create a table with a couple of field. You could add more fields if you wanted to store more information about the visitor, ie - date, time, browser, IP etc.

      You'd then just write a bit of php that would (at minimum) increment the count in the database and update it. With every refresh it would retrieve the current count and display it on screen.

      To count only unique visits you could add the users IP to another database table and query that with each refresh to check whether the users IP already exists in that table before incrementing.

      The possibilities are endless.
      Signature
      [FREE SEO TOOL] Build 29 Effective, High Authority Backlinks that Will Increase Your Google Rankings in 2020... CLICK HERE ...
      ... Instant backlinks that can get you results within 24-72hrs.
      {{ DiscussionBoard.errors[1359476].message }}
  • Profile picture of the author Gimme4Free
    This is the one you want:
    Learning PHP, MySQL, and JavaScript - O'Reilly Media

    Absolutely awesome guide, will get you from PHP newbie to an advanced coder in no time at all.
    {{ DiscussionBoard.errors[1357856].message }}
  • Profile picture of the author RedEvo
    have you tried W3Schools?

    d
    {{ DiscussionBoard.errors[1358022].message }}
    • Profile picture of the author Gary Smith
      Three tips:

      1. If you are using MySQL with your programming learn about mysql_real_escape_string() and use it on all user supplied data. See PHP Security Consortium: PHP Security Guide: Databases and SQL

      2. Always encrypt passwords and generate a new password from your 'lost password' page. If passwords are encrypted then they are pretty much useless to a hacker.

      3. Learn about session hijacking and session fixation. See PHP Security Consortium: PHP Security Guide: Sessions

      That's really only scraping the surface, but being mindful of security while you are learning will definitely help in the long term. There are plenty of good texts and tutorials on the internet that cover PHP scripts and how to make them more secure.
      Signature

      Gary Smith

      PHP Developer and aging geek

      {{ DiscussionBoard.errors[1358148].message }}
  • Profile picture of the author llamafier
    I learned from this book and thought it was really great. There wasn't a bunch of crap to read through it just got to the point of things.

    Title: PHP 5 Fast & Easy Web Development

    Won't let me link cause of post count so you'll have to Google it.
    {{ DiscussionBoard.errors[1360902].message }}
  • Profile picture of the author NinjaTech
    i use echo echo and monkeyforums These are how i learned.
    But truly its best to come up with an idea you want to use a database for
    a contact list or organize your dvds or movies.
    make a project you will have fun with. that will encourage you to learn. and push yourself.
    {{ DiscussionBoard.errors[1361389].message }}
  • Profile picture of the author childtalent
    go to php.net

    there are some pretty good information over there
    {{ DiscussionBoard.errors[1366299].message }}
  • Profile picture of the author Snowblind
    Once you've learnt the basics the best way to get going with PHP is to just start coding basic stuff. As you do that & get more and more advanced scripts you'll find you learn a lot by just searching through and using the PHP manual. The manual is available here: php.net/manual/en/
    {{ DiscussionBoard.errors[1368779].message }}
    • Profile picture of the author trumpetblast
      Someone earlier mentioned the PHP video tutorials website by Leighmac (link above or Google it: I can't link yet

      That's an excellent site which actually has 15 or 20 free lessons on it. Well worth your time and an easy way to get started.

      After that I'd also recommend picking out a project for yourself and just doing it. The best way to learn is to make tons of mistakes, figure out what the errors are, and then promise yourself you'll never pull your hair out by making that particular one again!

      Seriously, that's the one problem with books and tutorials: they can never drill home the point like doing something for yourself and wading through all the mistakes to finally get something working right.
      {{ DiscussionBoard.errors[1369036].message }}
  • Profile picture of the author morgano1132
    First of all you need to strong your basics it means you should do prctice of html and css first and then you can learn php easily,

    Thanks,
    {{ DiscussionBoard.errors[1374912].message }}
    • Profile picture of the author Hans123
      We have a duplicate board at http://www.warriorforum.com/programm...asy-learn.html

      My recommendations:

      1. Before you start with php, you need to understand html. A good starting point is W3Schools Online Web Tutorials as mentioned by other. Don't get distracted by the other tutorials at the site - Learn the basic HTML before moving on.

      2. Get the php developer tools, server and basic training for FREE from Eclipse PHP Development Tools - Zend.com - Use their training and sample along with additional php training from w3schools. That should bring you up to speed without any expenses.

      3. Thereafter you can consider advanced courses or books.

      4. Then contact me. I always have work for php programmers and a veriety of freelancers

      Good luck - Good php programmers are always in demand

      PS: Don't waste time with ASP. I will never use ASP again for any site
      {{ DiscussionBoard.errors[1376493].message }}
  • Profile picture of the author jacobycage
    If you ask me Just follow those optional by our Warriors here, just read the book about PHP while you reading just type the source code in to your PC to easy appreciate how does PHP mechanism.
    {{ DiscussionBoard.errors[2687846].message }}
    • Profile picture of the author adammacbell
      I think you should keep making the tutorials. Your method of teaching is one that is very well orientated towards self education and forcing the student to go out a find the answer as opposed to handing it to them. You can also learn from online on w3schools websites.
      {{ DiscussionBoard.errors[2688108].message }}
  • Profile picture of the author zeeshi570
    You can learn php only by practice
    {{ DiscussionBoard.errors[2691162].message }}
  • Profile picture of the author lucasdean123
    You can discover PHP programming without expenditure a centime. All you have to do is go down to your local library as well as get a elite books on PHP.
    {{ DiscussionBoard.errors[2728154].message }}
  • Profile picture of the author james911
    you need tow of them: apache server + php 5
    {{ DiscussionBoard.errors[2736311].message }}
  • Profile picture of the author caesargus
    I would agree with the book route. There are plenty of excellent tutorials out on the net. I would look into video training if you learn better that way. I would check out the Head First Series of books. SitePoint.com and php.net are among my favorite resources.
    {{ DiscussionBoard.errors[2738088].message }}
  • Profile picture of the author iamjohnbrown
    If you want to learn about PHP, I think you should first start with the basics. Go to w3c Schools website and learn some basics. After that you can start to code some simple programs in PHP and after that you can post your doubts in this forum and we can help you out
    {{ DiscussionBoard.errors[2739765].message }}
  • Profile picture of the author smorhaim
    1. Download an install MAMP, WAMP or one of those.
    2. Go find a nice Hello World tutorial
    3. Start expanding.

    php is the best language.. easy to learn, easy to code.
    Signature

    Samuel Morhaim
    Twitter: @smorhaim
    Sites: Smart Social Media Management Tool
    "It's better done that perfect."

    {{ DiscussionBoard.errors[2742088].message }}
  • Profile picture of the author leppozdrav
    Php is good when you need to get the technical aspects of a function and need to learn how it works, but if you're just starting on php you cant really learn much from php.net thats my experience, but of course its good to have it in the backhand if yuo need to get info about functions!
    {{ DiscussionBoard.errors[4409524].message }}

Trending Topics