Newer
Older
watercalc / print.ph_
@Evan Linde Evan Linde on 20 Jun 2017 176 bytes initial import
<?php
	$id = $cms->param(1);
	if(is_numeric($id) && $id > 0){
		PowerOfTenEvent::printReport($id);
	}else{
		header("Location: http://www.watermatters.org/thepowerof10");
	}
?>