add judge ID to judges export

This commit is contained in:
james 2005-03-09 20:33:16 +00:00
parent 2212b9c98d
commit 7e1321ee1d

View File

@ -46,7 +46,8 @@ else if($type=="csv")
}
$table=array();
$table['header']=array( i18n("Last Name"),
$table['header']=array( i18n("ID"),
i18n("Last Name"),
i18n("First Name"),
i18n("Email"),
i18n("Phone Home"),
@ -78,6 +79,7 @@ $q=mysql_query("SELECT judges.* FROM judges,judges_years WHERE judges_years.year
while($r=mysql_fetch_object($q))
{
$table['data'][]=array(
$r->id,
$r->lastname,
$r->firstname,
$r->email,