<?php
// URL of the page you want to get
$curl = "http://network-13.com/headlines.php";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $curl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// store returned data to the $output variable
$output = curl_exec($ch);
curl_close($ch);
echo $output;
?>
<marquee style="display: block; height: 300px; width: 400px; background-color: #EEEEEE" direction="up">Stuff here</marquee>