ok go to your phpinclude file...
add the following
ob_start();
require("/home/xxxxxx/www/new.php");
$noreplytopic = ob_get_contents();
ob_end_clean();
where /home/xxxxxx/www/new.php = the path to the file with the code in...
Also $noreplytopic = the variable you wish to use.
You will also need to remove this line in the code if you are going to be doing this:
require("./global.php");
If you need any help let me know
|