blob: 725afb961fc1630cf21a170f9a0261aa58bf0bc1 [file] [log] [blame]
gobrien11105c32008-02-01 22:58:11 +00001<?php
2/*******************************************************************************
droy5bb81172008-04-04 19:25:24 +00003 * Copyright (c) 2008 Eclipse Foundation and others.
gobrien11105c32008-02-01 22:58:11 +00004 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Paul Colton (Aptana)- initial API and implementation
11 * Eclipse Foundation
12*******************************************************************************/
13
14
15require_once("frag_global.php");
16
droy5bb81172008-04-04 19:25:24 +000017$query = "SELECT value, quantity FROM scoreboard WHERE itemid = 'LANGPR' ORDER BY quantity DESC";
gobrien11105c32008-02-01 22:58:11 +000018
19$res = mysql_query($query);
20
21?>
22<div id="trans-progress-area">
23 <h2>Translation Progress</h2>
24 <dl>
25 <?
26 while($row = mysql_fetch_assoc($res)){
droy5bb81172008-04-04 19:25:24 +000027 ?><dt><?=$row['value'] ?></dt>
28 <dd><?=$row['quantity'];?></dd><?
gobrien11105c32008-02-01 22:58:11 +000029 }
30 ?>
31 </dl>
32</div>