forked from science-ation/science-ation
add judge ID to judges export
This commit is contained in:
parent
2212b9c98d
commit
7e1321ee1d
@ -46,7 +46,8 @@ else if($type=="csv")
|
|||||||
}
|
}
|
||||||
|
|
||||||
$table=array();
|
$table=array();
|
||||||
$table['header']=array( i18n("Last Name"),
|
$table['header']=array( i18n("ID"),
|
||||||
|
i18n("Last Name"),
|
||||||
i18n("First Name"),
|
i18n("First Name"),
|
||||||
i18n("Email"),
|
i18n("Email"),
|
||||||
i18n("Phone Home"),
|
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))
|
while($r=mysql_fetch_object($q))
|
||||||
{
|
{
|
||||||
$table['data'][]=array(
|
$table['data'][]=array(
|
||||||
|
$r->id,
|
||||||
$r->lastname,
|
$r->lastname,
|
||||||
$r->firstname,
|
$r->firstname,
|
||||||
$r->email,
|
$r->email,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user