| <?php | |
| #***************************************************************************** | |
| # | |
| # cq_common.php | |
| # | |
| # Author: Denis Roy & others | |
| # Date: 2005-11-07 | |
| # | |
| # Description: Common code for both parts of the CQ | |
| # | |
| # | |
| #**************************************************************************** | |
| # get list of committers and projects | |
| $SQL = "SELECT | |
| userid, | |
| login_name, | |
| realname, | |
| extern_id | |
| FROM profiles | |
| WHERE extern_id IS NOT NULL | |
| AND extern_id <> \"watchbox\" | |
| ORDER BY realname"; | |
| $rs_profiles = mysql_query($SQL, $dbh); | |
| ?> |