H2S102: Superconducting Counter Functions in PHP:


H3S1: Count to 10,000,000:

session_start();
$_SESSION['number']=0; 
// While speed test: 
while($_SESSION['number'] < 10000000) {
	$_SESSION['number']=$_SESSION['number'] + 1; 
	echo $_SESSION['number'];
}
// Redirect to a page that echoes $_SESSION['number']:
header("Location: http://personal-dash/testing-progress/random.test-dump.php");

H3S2: plus.1-perpetual,test:

H3S3: plus.1-perpetual,fwrite.test:

H3S4: plus.1-completion,time.test:


Leave a Reply

Your email address will not be published. Required fields are marked *