Ask Experts Questions for FREE Help !
Ask
    Bobbo_the_Beggar's Avatar
    Bobbo_the_Beggar Posts: 9, Reputation: 2
    New Member
     
    #1

    Aug 29, 2006, 05:08 PM
    A Good PHP Tutorial
    Does anyone know of a good, easy-to-understand, free PHP tutuorial that I can download and learn from? I am highly interested in utilizing the PHP server my website is hosted on. Thank you.
    rudi_in's Avatar
    rudi_in Posts: 251, Reputation: 45
    Full Member
     
    #2

    Aug 29, 2006, 05:19 PM
    Thank you for posting your question to the Ask Me Help Desk.

    Try this link. Hopefully it will get you started.

    W3SCHOOLS

    There are lots of good tutorials here.
    RickJ's Avatar
    RickJ Posts: 7,762, Reputation: 864
    Uber Member
     
    #3

    Aug 30, 2006, 02:55 AM
    Here are a couple that have been recommended to me (although I must admit I've not learned PHP yet)

    http://www.zend.com/php5/abs/index.php
    www.phpfreaks.com

    I'd think the top hits here would be good ones to check out too.
    LTheobald's Avatar
    LTheobald Posts: 1,051, Reputation: 127
    Ultra Member
     
    #4

    Aug 30, 2006, 04:38 AM
    I agree with all the links above - PHP Freaks being my favourite. Some others are:

    http://php.resourceindex.com/
    http://www.php.net/manual/en/ - True not a tutorial but it's invaluable!

    And for a super quick tutorial...
    1. Open Notepad.
    2. Enter the following:
      Code:
      <html>
      <head>
      <title>My First PHP Page</title>
      </head>
      
      <body>
      <?php
      echo 'Hello World!';
      echo '<br/>';
      
      $a = 7;
      $b = 12;
      $c = $a + $b;
      echo "$a + $b = $c";
      ?>
      </body>
      </html>
    3. Save this as test.php
    4. Upload the test.php file to the folder you store your regular HTML pages
    5. Point your browser to the address of your web site followed by "test.php". For example http://www.mywebpage.com/test.php
    You should get a page saying:
    Hello World
    7 + 12 = 19
    Finally try changing this line:
    Code:
    echo "$a + $b = $c";
    to use single instead of double quotes and see what happens.
    Bobbo_the_Beggar's Avatar
    Bobbo_the_Beggar Posts: 9, Reputation: 2
    New Member
     
    #5

    Sep 9, 2006, 07:21 PM
    Thank you, everyone. I appreciate your comments!
    Dadaja's Avatar
    Dadaja Posts: 1, Reputation: 1
    New Member
     
    #6

    Sep 3, 2010, 02:44 AM
    PHP tutrial is one of the best from online tutorials
    robertflorish's Avatar
    robertflorish Posts: 1, Reputation: 1
    New Member
     
    #7

    Sep 26, 2011, 12:43 AM
    Scriptsdesk has the collections of best php tutorials,tips & programming books.

Not your question? Ask your question View similar questions

 

Question Tools Search this Question
Search this Question:

Advanced Search

Add your answer here.


Check out some similar questions!

Bad or good ! [ 20 Answers ]

Dear exerts , How can you tell whether your spirituality is in the right direction or wrong?? Regards Navid

Good or bad? [ 19 Answers ]

So there is this guy at work who I get on with really well. We are always telling each other jokes and having a laugh. However, he has recently startd being overly nice. Everyday I come into work, he will shout hello and then follow with "you look very nice today" - it's really nice and made...

Looking for the good in all: [ 3 Answers ]

Hi Everyone, How can we find the good in others? Does religion help us to be kinder to others? What do you thinK? Take care, Hope12


View more questions Search