Current File : //var/wcp4/wongwais/public_html/scripts/scripts/bandwidthmeter/initialmeter.php
<!-- Copyright 2002 (C) Gambit Design Internet Services -->
<!-- This is licensed under the GNU Public License -->
<!-- Author: Derek T Del Conte - derek@gambitdesign.com -->

<?php include_once("config.inc.php"); ?>
<html>
	<head>
		<title><?php echo $isp_name; ?> - Bandwidth Meter</title>
		<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
		<META HTTP-EQUIV="Expires" CONTENT="Fri, Jun 12 1981 08:20:00 GMT"> 
		<META HTTP-EQUIV="Pragma" CONTENT="no-cache"> 
		<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache"> 
		<link rel="stylesheet" href="style.css">
	</head>

	<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
		<center>
			<table border="0" cellpadding="0" cellspacing="0">
  				<tr>
    				<td><?php echo $header; ?></td>
    			</tr>
			</table>
			<table border=0 cellpadding=0 cellspacing=0>
				<tr>
      				<td><br><br><br><br><br><br><font size=+1>
						Conducting bandwidth tests...</font></td>
				</tr>
			</table>

<script>
<!--
	time      = new Date();
	starttime = time.getTime();
// -->
</script>

<?php

	$data_file = $home ."payload.bin";
	if ( $fd = fopen ($data_file, "rb") ) {
		$test_kbytes = 128;
	
		$contents = fread ($fd, $test_kbytes * 1024);
		
		echo "<!-- $contents -->";
		fclose ($fd);
	} else {
		die("could not open payload file");
	}


?>

<script>
<!--
	time          = new Date();
	endtime       = time.getTime();
	if (endtime == starttime)
		{downloadtime = 0
		}
	else
	{downloadtime = (endtime - starttime)/1000;
	}

	kbytes_of_data = <?php echo $test_kbytes; ?>;
	linespeed     = kbytes_of_data/downloadtime;
	kbps          = (Math.round((linespeed*8)*10*1.024))/10;

	nextpage='meter.php?kbps=' + kbps;
	document.location.href=nextpage
// -->
</script>
<center>
</body>
</html>