Broadband
Dial-Up
Email
Hosting
Wireless
Security
Useful Tools
Quick Reference
Contact Us
Customer Portal
Site Search

Zen Internet Support Forum

Welcome to the Zen Internet community support forums.

Before posting we recommend you search our
extensive Knowledge Base or the forum archives
as an answer to your query may already be available.

Welcome to Zen Internet Support Forum Sign in | Join | Help
in
Forums Forum Rules

PHP tutorials

Last post 15-04-2005, 6:52 PM by Craig Rodway. 6 replies.
Sort Posts: Previous Next
  •  01-06-2004, 3:01 PM 3

    PHP tutorials

    I'm a web language newbie and I would like to learn PHP

    Does anyone know of any good PHP Tutorial websites?

    thanks alot,
    mint0
  •  01-06-2004, 3:25 PM 4 in reply to 3

    RE: PHP tutorials

    Yup,

    php.net has some good tutorials.

    I'm also a php Deity - well, I know a bit about php Tongue

    I've done a few php driven sites and can help with basics.


    Here follows a generic "Hello World" tutorial...

    <html>
    <head>
    <title>Hello World</title>
    </head>
    <body>

    <?php

    echo "Hello World<br>";

    $str1 = "Hello";
    $str2 = "World";

    echo $str1." ".$str2."<br>";

    ?>

    </body>
    </html>

    That shows you doing a straight forward stringy output, and a php variable driven one Smile

    All php code is held within the <?php ?> tags, although the opening tag can be abbreviated to <? - although some people frown upon that as it may cause problems with server configurations. <?php is just a bit more explanatory.

    Cheers,
    Karl
  •  01-06-2004, 3:55 PM 5 in reply to 3

    RE: PHP tutorials

    Thanks for the help Smile
  •  01-06-2004, 6:42 PM 8 in reply to 3

    RE: PHP tutorials

    A good resource of PHP scripts, tutorials and guides can be found at http://www.hotscripts.com/PHP/index.html

    Another good place to start is http://www.php.net/manual/en/ which has everything PHP you could possibly ever need.
  •  01-06-2004, 9:37 PM 13 in reply to 3

    RE: PHP tutorials

    Lots of useful info is also available here
    hth Smile
    --
    Martyn Dewar
    Zện Active 8000 Big Smile [:D]
  •  02-06-2004, 9:08 PM 34 in reply to 3

    RE: PHP tutorials

    I find www.phpbuilder.com a bible when trying to remember commands and their syntax.
  •  15-04-2005, 6:52 PM 3398 in reply to 3

    RE: PHP tutorials

    For reference, you can use `www.php.net/function_name` to go directly to PHP's page on that specific function.

    PHP Help Center at www.phphelpcenter.com might be a good place to get some code snippets etc.
View as RSS news feed in XML