使用迴圈列出學號清單

<?php	
	for ( $i = $mystart; $i <= $myend; $i++ ) {
		echo "<li>A080C00${i}</li>";
	}
?>