hi,
include () and require () accept only the name of the file you want to include. the included file can access all variables and parameters of the including file.
so the following code will do what you want:
$item = "success";
include "content.php";
the var $item will have value 'success' when you access it in 'content.php'
kind regards
-|stefan|-