| 11 |
$rows = pg_NumRows($query); |
$rows = pg_NumRows($query); |
| 12 |
for ($i = 0 ; $i < $rows ; $i++) { |
for ($i = 0 ; $i < $rows ; $i++) { |
| 13 |
$row = pg_Fetch_Array($query, $i); |
$row = pg_Fetch_Array($query, $i); |
| 14 |
echo $row["name"], "<BR>\n"; |
echo "<LI>", $row["name"], "\n"; |
| 15 |
} |
} |
| 16 |
return TRUE; |
return TRUE; |
| 17 |
}?> |
}?> |
| 25 |
<H1>Debian New Maintainer - Application Manager List</H1><BR> |
<H1>Debian New Maintainer - Application Manager List</H1><BR> |
| 26 |
<P>Below is the list of Debian maintainers who are currently active as |
<P>Below is the list of Debian maintainers who are currently active as |
| 27 |
Application Managers: |
Application Managers: |
| 28 |
<BR> |
<UL> |
| 29 |
<? $sql = "SELECT * from manager WHERE is_active IS TRUE ORDER by name"; |
<? $sql = "SELECT * from manager WHERE is_active IS TRUE ORDER by name"; |
| 30 |
print_applicants($db, $sql); ?> |
print_applicants($db, $sql); ?> |
| 31 |
|
</UL> |
| 32 |
<P> |
<P> |
| 33 |
<P>Below is the list of Debian maintainers who used to help as Application |
Below is the list of Debian maintainers who used to help as Application |
| 34 |
Managers in the past: |
Managers in the past: |
| 35 |
<BR> |
<UL> |
| 36 |
<? $sql = "SELECT * from manager WHERE is_active IS FALSE ORDER by name"; |
<? $sql = "SELECT * from manager WHERE is_active IS FALSE ORDER by name"; |
| 37 |
print_applicants($db, $sql); ?> |
print_applicants($db, $sql); ?> |
| 38 |
|
</UL> |
| 39 |
<? |
<? |
| 40 |
pg_Close($db); |
pg_Close($db); |
| 41 |
?> |
?> |