Hey Scott,
It seems to me that the issue with your output displaying above your header is caused by the fact that you are using print statements in your script instead of passing that data to your template.
Locate this block of code:
PHP Code:
if (isset($_POST['Selection'])) {
$selectedItemID = $_POST['Selection'];
print getMostWatchedItemsResults($selectedItemID, $cellColor);
} else {
// If button not clicked, show only most watched items
print getMostWatchedItemsResults('', '');
}
Try changing it to:
PHP Code:
if (isset($_POST['Selection'])) {
$selectedItemID = $_POST['Selection'];
$return_value = getMostWatchedItemsResults($selectedItemID, $cellColor);
} else {
// If button not clicked, show only most watched items
$return_value = getMostWatchedItemsResults('', '');
}