"; foreach ($clients as $client) { for ($i=0;$i< count($client);$i++) { print "$client[$i],"; } print "
"; } } elseif ($_POST['ExportToXML']) { } elseif ($_POST['ExportToTXT']) { print "This is a fake tab-delimited TXT. It has no header row.
";
	foreach ($clients as $client) {
		for ($i=0;$i< count($client);$i++) {
			print "$client[$i]\t";
		}
		print "
"; } print "
"; } ?>