How much bandwidth does this page use?
Posted: Sun Oct 02, 2005 10:04 pm
Hey guys,
To start off....sorry if this isn't really in the right place, I didn't know where to put it. Anyways, I have a simple page that pulls the info off another website:
Just a simple observation is that the page takes about 2 seconds to load (http://www.ski-us.com/test.php) - Can I get a rough estimate of how much bandwidth that page would use every time it was loaded? Thanks!
To start off....sorry if this isn't really in the right place, I didn't know where to put it. Anyways, I have a simple page that pulls the info off another website:
Code: Select all
<?php
$lines = implode("", file("http://www.snowshoemtn.com"));
echo $lines;
?>