Results 1 to 3 of 3

Thread: Need a litle direction on PhP

  1. #1
    Join Date
    Jul 2009
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Need a litle direction on PhP

    I have found several comment scripts which I would like to use on my website. I know how to upload the files but I ave no idea how to insert them into my site. Where would I go to learn about how to do this. Thanks for the help.

  2. #2
    Join Date
    Jul 2009
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I don't think there is any php coders, There has been no replyes. But if there is a read me file in the script files you may find what you need there to run them, also a lot of times the writer will leave direction in the files with the code.

    cheers

  3. #3
    Join Date
    Apr 2008
    Location
    So.Cal
    Posts
    3,643
    Thanks
    63
    Thanked 516 Times in 502 Posts
    Blog Entries
    5

    Default

    Not knowing anything about the scripts you're using, I couldn't say for certain.

    If they are php scripts, you need to:

    a) make sure your web host supports php (and all the php functions your script uses)
    b) rename all files that use php with a ".php" extension

    If there are no script-specific instructions or requirements, just write the code onto your webpage, inside <?php ?> tags. Alternatively, you could upload your script on its own and include it on your page like so:
    PHP Code:
    <?php
    include ("path/to/php/script.php");
    ?>
    For more/better help, post the scripts you're using and the pages you want to use them in.

Bookmarks

Posting Permissions

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