Sure.. Ok, now just change the path and stuff to the path to whatever PHP file you put this on:
Code:
<?
require("/path/to/global.php");
require("/path/to/admin/config.php");
//first load global.php & the vB config file
//use this if you want two variables at the top /?var1=blah&var2=blah
if (isset($var1) && isset($var2)) {include ("/path/to/var1.php");}
//You can also use var2 in the path, or use it to determine what conf file you want to load...
//Use this if you want one variable /?var1=blah
if (isset($var1)) {include ("/path/to/var1.php");}
//Ok, now on the page load the conf_$var1 file (specified above) than include the news.php file
include("/path/to/news/conf_$var1");
include("/path/to/PluhNews.php");
?>
Now, if their are any errors, let me relook the code, I sorta wrote the whole thing in here.. BTW: I am no PHP pro. i just know this stuff.