Results 1 to 1 of 1
  1. #1
    Join Date
    Sep 2004
    Location
    Flint, Michigan
    Posts
    5,766

    Guide to Getting Help - New Users Look Here

    So you have a programming question? If you want to have it answered quickly and accurately here's some tips:

    1. Make good use of the BB Code tags for your code.

    When posting code there's three BB tags you should know! CODE, PHP, and HTML. These tags make it immensely easier for people to read your code, and diagnose any problems. To use them wrap your code as you would any other BB Code:

    Removed the Spaces To Use
    [ CODE ]CodeHere[/ CODE ]
    [ PHP ]PHPHere[/ PHP ]
    [ HTML ]HTMLHere[/ HTML]

    Examples:
    <?php echo("Hello World!"); ?>
    PHP Code:
    <?php echo("Hello World!"); ?>
    <html>
    <html>
    <title>My Webpage</title>
    </head>
    <body>
    <h1>Hello World!</h1>
    </body>
    </html>
    HTML Code:
    <html>
    <html>
    <title>My Webpage</title>
    </head>
    <body>
    <h1>Hello World!</h1>
    </body>
    </html>
    Code:
    Here's_A_Really_Long_Piece_Of_Text_That_Would_Scroll_The_Screen______________________________________________________________________________________________________________________________________________________________________
    2. Show us an Example!
    If you're posting because your code is behaving funny, please post an example of your code. If you're having display issues, please post a link to the page that is giving you troubles or a screenshot of the problems.

    3. State what language you are speaking about.
    This is often obvious within the post; however, please be sure that we know what language your question is about.

    4. Tell us any and all errors you receive.
    Often times your errors will let you know exactly what the problem is (as cryptic as they may be). Please post any errors you receive in their entirety.
    Last edited by Christian; 11-03-2008 at 06:33 PM.
      1 Not allowed!

Posting Permissions

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