forked from GDRCD/GDRCD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser_regolamento.inc.php
31 lines (25 loc) · 1.08 KB
/
user_regolamento.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<div class="servizi_abilita">
<div class="page_title"><h2><?php echo gdrcd_filter('out',$MESSAGE['interface']['rules']['page_name']); ?></h2></div>
<div class="page_body">
<?php /*HELP: */
$query="SELECT articolo, titolo, testo FROM regolamento ORDER BY articolo";
$result=gdrcd_query($query, 'result');?>
<div class="panels_box">
<div class="elenco_record_gioco">
<table>
<?php while($row=gdrcd_query($result, 'fetch')){ ?>
<tr>
<td class="casella_titolo"><div class="elementi_elenco"><?php echo gdrcd_filter('out',$row['articolo']); ?>)</div></td>
<td class="casella_titolo"><div class="elementi_elenco"><?php echo gdrcd_filter('out',$row['titolo']); ?></div></td>
</tr>
<tr>
<td colspan="2" class="casella_elemento"><div class="elementi_elenco"><?php echo gdrcd_bbcoder(gdrcd_filter('out',$row['testo'])); ?></div></td>
</tr>
<?php }//while
gdrcd_query($result, 'free');
?>
</table>
</div><!--elenco_record_gioco-->
</div><!--panels_box-->
</div>
</div><!-- Box principale -->