View Single Post
  #8 (permalink)  
Old 03-14-10, 12:04 PM
wirehopper's Avatar
wirehopper wirehopper is offline
-
 
Join Date: Feb 2006
Posts: 2,515
Thanks: 20
Thanked 109 Times in 106 Posts
Instead of $inc=include('inc.php'); you could use $inc=file_get_contents('inc.php');

Remember that because the file has .php as an extension, PHP is going to try to process it. If it's just text - you can use file_get_contents('inc.txt');
Reply With Quote