* @package AgileBill * @version 1.4.93 */ /* USAGE: url/to/modules/asset/generator.php?prefix=MyPrefix&start=1&end=100 Where prefix a text prefix (defaults to asset- ) Where start is the start of the count Where end is the end of the count Paste to a text file and save for loading into the asset import tool. */ $prefix='asset-'; $start=0; $end=1000; @$prefix = $_GET['prefix']; @$start = $_GET['start']; @$end = $_GET['end']; echo "
";

while($start < $end) {
	echo $prefix.$start."\r\n";
	$start++;
}

?>