Return to index.php CVS log | Up to [Development] / gantt_manager / src |
1 pjaol 1.1 <?php | ||
2 pjaol 1.2 include("lib/db_objects/user_groups.inc"); 3 $ug = new users(); | ||
4 pjaol 1.1 | ||
5 pjaol 1.2 $groups = $ug->getAllGroups(); 6 7 8 ?> 9 <html> 10 <head><title>Gantt Manager V1</title> 11 </head> 12 <body> 13 14 <table> 15 <tr> 16 <td> Group ID </td> 17 <td> Group Name </td> 18 </tr> 19 <?php 20 foreach ($groups as $gids){ 21 22 echo "<tr><td>".$gids['idGroups']."</td><td>".$gids['groupName']."</td></tr>"; 23 24 } 25 ?> 26 pjaol 1.2 </table> 27 </body> 28 </html> |
cvsadmin |
Powered by ViewCVS 0.9.2 |