?>
	// CSIRO Manufacturing Science and Technology, Preston Lab
	// list page (hymod_bddb / boards)
	require("defs.php");
	pg_head("$bddb_label - Browse Board Log");
	$serno=intval($serno);
	if ($serno == 0)
		die("serial number not specified or invalid!");
	function print_cell($str) {
		if ($str == '')
			$str = ' ';
		echo "\t
$str\n";
	}
?> | 
| serno / edit | ethaddr | date | batch | type | rev | location | 
\n";
		print_cell("$row[serno]");
		print_cell($row['ethaddr']);
		print_cell($row['date']);
		print_cell($row['batch']);
		print_cell($row['type']);
		print_cell($row['rev']);
		print_cell($row['location']);
		echo "\n";
	}
	mysql_free_result($r);
?>
$limit){
		$preoffset=max(0,$offset-$limit);
		$postoffset=$offset+$limit;
		echo "\n\n";
		printf("| <%sa href=\"%s?submit=Log&serno=$serno&offset=%d\"> \n", $offset>0?"":"no", $PHP_SELF, $preoffset);
		printf(" | <%sa href=\"%s?submit=Log&serno=$serno&offset=%d\"> \n", $postoffset<$lrow['n']?"":"no", $PHP_SELF, $postoffset);
		echo " | 
\n
\n";
	}
	mysql_free_result($lr);
?>
| logno / edit | date | who | details | 
\n";
		print_cell("$row[logno]");
		print_cell($row['date']);
		print_cell($row['who']);
		print_cell("" . urldecode($row['details']) . "
");
		echo "\n";
	}
	mysql_free_result($r);
?>