26 lines
607 B
PHP
26 lines
607 B
PHP
<?php
|
|
|
|
//
|
|
// this page gets used by administrators to see what apps have had
|
|
// modifications made and need to be updated
|
|
//
|
|
|
|
require_once("apps.inc");
|
|
|
|
$res = mysql_query("SELECT * FROM app WHERE status = 'M' ORDER BY date_added");
|
|
|
|
print("<h1>Modified Applications</h1>");
|
|
|
|
$num_rows = mysql_num_rows($res);
|
|
if( $res && $num_rows > 0 ) {
|
|
print("<table border=0 cellpadding=2 cellspacing=0 width=100%>");
|
|
while( $row = mysql_fetch_object($res) ) {
|
|
displayApp($row, 0, 0, 0);
|
|
}
|
|
print("</table>");
|
|
|
|
}else {
|
|
print("There are no modified applications at this time.");
|
|
}
|
|
|
|
?>
|