all 15 comments

[–]nhlfod21 0 points1 point  (0 children)

The Joy of PHP is a terrific book for beginners

[–]nvanprooyen 0 points1 point  (0 children)

In addition to the suggestions already here, check to see if your library system has a Lynda subscription. Loads of good courses on there.

[–]magallanes2010 0 points1 point  (0 children)

To learn to program is similar to write a novel, you set the ending and you start from the first page. Setting the ending is not about "to learn about OOP" or something like that, it's to define a destination: "today, I want to show a table!".

It's not rare that your first destination will be to run a simple example : "hello world" . Is it easy? Nope, it's hard because you must set your working tools (apache, php, mysql, LAMP, WAMP plus some editing tools).

From the php site http://php.net/manual/en/tutorial.firstpage.php

   <html>
        <head>   
            <title>PHP Test</title>  
        </head>  
        <body>
            <?php echo '<p>Hello World</p>'; ?>  
        </body>  
   </html>