PHP Code:
ob_start();
// put script code or include here
<?php
require("TwitterClass.php");
$twitter = new Twitter();
$user1 = $twitter->getTweetInfo("mxpimp47");
$user2 = $twitter->getTweetInfo("freestonemx");
foreach($user1 as $status)
{
$id = $status["id"]; // status ID
$text = $status["text"]; // actual status
echo "<p> $text </p>";
echo "<br />";
}
foreach($user2 as $status)
{
$id = $status["id"]; // status ID
$text = $status["text"]; // actual status
echo "<p> $text </p>";
echo "<br />";
}
?>
$my_output = ob_get_contents();
ob_end_clean();
vB_Template::preRegister('footer', array("my_output" =>$my_output));
I think I have some things mixed up, Im not quite sure working with this block you gave me. I also looked this-
https://www.vbulletin.com/forum/show...P-or-HTML-File is this another way to insert a chunk of php or is this for like a whole page?