View Full Version : Need a litle direction on PhP
walkerdurham
07-24-2009, 02:40 PM
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.
tbint
07-24-2009, 06:47 PM
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
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
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.
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.