Log in

View Full Version : Passing an output of exteral script to the VBulletin footer?


king98
10-14-2002, 12:01 PM
How can I pass an out put of extenal script (e.g. counter script) to the vbulletin header or footer ?

Xenon
10-14-2002, 04:04 PM
well the easiest? way is to rewrite the script so it sends an image instead of textoutput and then add <img src="scriptname.php"> into your footer

king98
10-15-2002, 04:43 AM
It did not work because it took the URL of the script as "src" instead of taking the out put as "src". I also used these methods:

<?php
include("http://localhost/workshop/script.php");
?>



<?php
include("../workshop/script.php");
?>



<script language="php" src="http://localhost/workshop/script.php">
</script>
but none of them was successfuly work. Thank you for your try :)

Velocd
10-15-2002, 05:04 AM
It's late, so these methods might seem totally unlogical, but try them anyway ;)


<?php
require('../workshop/script.php');
?>



<?php
echo ("../workshop/script.php");
?>

Velocd
10-15-2002, 05:07 AM
Check this page out as well, you might find a suitable function:
http://www.php.net/manual/en/function.require.php

;)

Xenon
10-15-2002, 07:48 AM
king, if you want to include it per img you have to chage the script so it sends the right headers and so on...