2 alternatives:
1- use this in phpinclude template:
PHP Code:
$file4=include("/home/virtual/powwows.com/var/www/html/ssi/shop.php");
and use $file4 in any template you want
BUT
in this case you must hack your shop.php too and make sure it RETURNs its output like a function (otherwise you'll get value "1" from the script instead of code itself)
2- Add your
PHP Code:
include("/home/virtual/powwows.com/var/www/html/ssi/shop.php");
to another template and change its parsing inside vb with this line:
PHP Code:
eval(gettemplate('templatename',0,0));
Well you'll still have problems pasting the content in the location you like via this method because this line might immediately start HTML output so I suggest go with first solution..
Alternatively you can dump your shop.php script and create a in-vb code which will randomly get an item from database which is certainly the best solution if your shop.php is not performing other complicated tasks..