PDA

View Full Version : php marque help?


morrow
05-30-2006, 11:34 PM
Hey everyone... I'm looking for some help here.

this is my code:

<?
$content =file("http://waterdata.usgs.gov/ny/nwis/uv?format=rdb&period=1&site_no=01427510");
array_pop($content);
$current = array_pop($content);
print("<table border=1>");
print("<tr><td>USGS</td><td>Station</td><td>Date</td><td>Time</td><td>Height
</td><td>CFS</td><td>Temperature</td>");
print($current);
print("</table>");
?>

link to actual output:
http://www.njflyfishing.com/usgstst3.php


My question is this. I'd like to format that information so it looks more aesthetically pleasing. Can someone help me out here? It would be really nice to have it formatted and displayed in a marquee on my vbadvanced page.

THanks!