Ask Me Help Desk

Ask Me Help Desk (https://www.askmehelpdesk.com/forum.php)
-   Internet & the Web (https://www.askmehelpdesk.com/forumdisplay.php?f=177)
-   -   A Good PHP Tutorial (https://www.askmehelpdesk.com/showthread.php?t=32892)

  • Aug 29, 2006, 05:08 PM
    Bobbo_the_Beggar
    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.
  • Aug 29, 2006, 05:19 PM
    rudi_in
    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.
  • Aug 30, 2006, 02:55 AM
    RickJ
    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.
  • Aug 30, 2006, 04:38 AM
    LTheobald
    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:
    Quote:

    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.
  • Sep 9, 2006, 07:21 PM
    Bobbo_the_Beggar
    Thank you, everyone. I appreciate your comments!
  • Sep 3, 2010, 02:44 AM
    Dadaja
    PHP tutrial is one of the best from online tutorials
  • Sep 26, 2011, 12:43 AM
    robertflorish
    Scriptsdesk has the collections of best php tutorials,tips & programming books.

  • All times are GMT -7. The time now is 02:10 AM.