OK Thanks. The reason was to do with formatting the output. I'll expand on what I'm trying to do and perhaps approach it from a different angle.
I have this code in a PHP widget.
PHP Code:
ob_start();
include("radio_stats_martin.php");
echo "<br />\n";
$output .= ob_get_contents();
ob_end_clean();
ob_start();
include("radio_stats_alex.php");
echo "<br />\n";
$output .= ob_get_contents();
ob_end_clean();
As you can see, this is duplicate code but referring to 2 different php files.
The output is shown below.
The php files are checking the status of 2 different shoutcast servers and outputting to my widget based on wether the server is broadcasting or not, so this output is dynamic.
Basically I want to arrange the 2 outputs side by side rather than one below the other. The reason I asked about a HTML widget is because I could put the outputs into tables, or so I thought. As you've now confirmed I can't do that.
Any help is greatly appreciated.
Thanks for reading.
B