-
Notifications
You must be signed in to change notification settings - Fork 0
/
utenti_sp_con_parametri.php
executable file
·46 lines (41 loc) · 1.26 KB
/
utenti_sp_con_parametri.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
include("ssi/header.php");
include("ssi/shop_mysql_costanti.php");
include("ssi/shop_mysqli_funzioni.php");
// raccoglie il valore per l'id utente (dovrebbe riceverlo dall'esterno
$user_id = 11;
// inizializzazioni (N.B. MySQL NON supporta le viste a parametro ma le stored procedure SI)
$sql = "CALL sp_visualizza_utente(" . $user_id .")";
$dati = null;
$riga = array();
$utente_id = 0;
$utente_user = "";
// apre il rst
$dati = rst_apri($sql);
// visualizza i dati recuperati
while ($riga = rst_dati_ass($dati)) {
$utente_id = $riga["IDutente"];
$utente_user = $riga["UserName"];
?>
<table width="100%" border="0" cellpadding="2">
<!-- intestazione -->
<tr class="sfondo">
<td colspan="2">
<!-- ci va il nome della categoria -->
<strong>UserName: <?php echo($utente_user); ?></strong>
</td>
</tr>
<!-- corpo -->
<tr>
<td width="100" align="center" valign="top">
</td>
<td valign="top">
<p><!-- ci va la descrizione della categoria --></p>
IDutente:<?php echo($utente_id); ?>
</td>
</tr>
</table>
<?php
} // fine ciclo
include("ssi/footer.php");
// ? >