source:
create_groups.php@
1
Last change on this file since 1 was 1, checked in by , 18 years ago | |
---|---|
File size: 354 bytes |
Line | |
---|---|
1 | <? |
2 | |
3 | include('error.php'); |
4 | include('stat_functions.php'); |
5 | include('db.php'); |
6 | DB_Init('localhost', 'root', '', 'statistic'); |
7 | |
8 | $Measures = array(); |
9 | DB_Select('stat_measure', '*'); |
10 | while($Measures[] = DB_Row()); |
11 | array_pop($Measures); |
12 | |
13 | foreach($Measures as $Measure) |
14 | { |
15 | echo('Velicina '.$Measure['name']."\n"); |
16 | for($Level=) |
17 | } |
18 | ?> |
Note:
See TracBrowser
for help on using the repository browser.