Results 1 to 3 of 3

Thread: easy newbie question: (for PHP)

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    you know how in html you write:


    <html>
    html code
    </html>

    what do I do in PHP

    like
    <php>
    </php>
    that doesn't work

    thanks in advance


    dimava
    NXSupport - Your one-stop source for computer help

  2. #2
    Monday Morning Lunatic parksie's Avatar
    Join Date
    Mar 2000
    Location
    Mashin' on the motorway
    Posts
    8,169
    You need to use:
    <?php ?> tags:
    Code:
    <html>
    <body>
    <?php
        echo "Here is PHP!";
    ?>
    </body>
    </html>
    I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You".
    -- Linus Torvalds

  3. #3

    Thread Starter
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    thanks
    NXSupport - Your one-stop source for computer help

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width