View Single Post
Old 12-29-2007, 02:03 PM   #3 (permalink)
xenon
The Frequenter
Newcomer 
 
xenon's Avatar
 
Join Date: Dec 2007
Location: Bucharest, Romania
Posts: 438
Thanks: 3
xenon is on a distinguished road
Default

Quote:
Originally Posted by Aaron View Post
How would I have something like this work:

$pass = include("pass.txt");

It is moi importante.
You have to return the output (or what you need) from that include file, just like you would in a function. Here's an example:

include.php
Code:
$x = 2+4;
return $x;
index.php:
Code:
$sum = include_once 'include.php';
echo $sum * 4; // should output 24
__________________
I have optimistic thoughts, even though sometimes (if not always) life's a bitch.
xenon is offline  
Reply With Quote
The Following 3 Users Say Thank You to xenon For This Useful Post:
Aaron (12-29-2007), deflated (12-29-2007), sjaq (12-29-2007)