Summary: I have a "functions.php" which contains all the functions used across my site. It is currently 48KB and contains all the functions my site uses. I won...
Summary: Hello, I'm new to PHP and trying to figure out how to protect PHP include files. I've searched google and got one solution which needs to edit php con...
Summary: I am using PHP include code <?php if($page == "") { include "updates.txt"; } else { include "$page.txt"; } ?> on my website, http://www.animeplanet...
Summary: Hi, I am making a small website containing various articles. I have used the PHP include function to add a file of comments to the end of each page. I...
Summary: There are several organizations that want to have the content of http://www.cancereducation.com/cancersyspagesnb/a/mmrf/mm0204/index.cfm?rid=36 on the...
Summary: bazooka, OK, couple of things. First, AWESOME site man! That thing is pretty sweet and it sounds like you have a lot of fun. I'm ready to go pick up...
Summary: Installing the Package ---------------------- Unzip the package into the directory you want to use on you web server, if you're unsure where that is, ...
Summary: Ok I'm rather new to php, go figure :) Anyway I'm trying to lord certain pages into tables using include, though the problem I'm having is it will wor...
Summary: if this were me, i'd go something like this. <?php $countfile = "manu.txt"; if (!file_exists("$countfile")) { $fp = fopen("$countfile", "a"); fputs...
Summary: Hiya all, I've been thinking about how I'm going to structure my website and am trying to decide the best method for doing so. In this I figured I'd s...
Summary: Oh, sorry. I was in a hurry last time I wrote. To be specific: I have the whole navigation code in leftmenu.php, which I then have included with php i...
Summary: Maybe I get it :D PHP include() is not the same with frames. By using includes, even if you include a lot of files, the output is still a single HTML ...
Summary: hi all im new to php so i need help. I currently have a voice chat which is coded in javascript, i have a registration system in php that works fine a...
Summary: Make sure your website has PHP support. If it does you can very simply include your pages. When using PHP it is best to save all of your files as PHP ...
Summary: I want to create a php include for pages on my website and for it to call a RANDOM line from a text file . This text file will have 250 one line comme...
Summary: it would be best to use php for this. just create a new html file called menu and make your menu in that then use a piece of php code on your pages to...
Summary: I got a little help on this at PHPFreaks, though I still can't get it to take. The following code basically extracts data from a database, and prints ...
Summary: Michael, here is a piece of the code. <?php $ad= "visit www.websitename.com"; $number = $_POST['number']; /* pulls number from index */ $provider =...
Summary: hey guys I am getting an unexpected error message fo the following coed, any ideas... <body> <?php include("includes/open_db.php"); $result ...
Summary: Hey guys, I tweaked a small javascript that hides a div when the link is clicked then it opens it if clicked again. If I put text in the divs that ope...