lege tabellen overslaan
Code (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
$result = mysqli_query($dbCon,"SHOW TABLES FROM $dbname");
$resultaant = mysqli_query($dbCon,"SHOW TABLES FROM $dbname");
$teller = 0;
echo "<br />";
//tellen van tabellen
while($nr = mysqli_fetch_array($resultaant)){
$teller++;
}
$aant = $teller-3;
echo "Aantal gebruikers: " . $aant;
//maken van tabellen
while($row = mysqli_fetch_array($result)){
if ($row[0] != 'examen' and $row[0] != 'code' and $row[0] != 'gebruikers') {
$optie = $row[0];
}else{
$optie = "";
}
?>
<?php if ($optie != ""){
?>
<div class="uitslagen">
<table>
<tr>
<th colspan="3">IP nummer: <?php echo $optie;?></th>
</tr>
<tr>
<th>Examen</th>
<th>Antwoord</th>
<th>Datum en tijd</th>
</tr>
<?php $tabel = mysqli_query($dbCon,"SELECT * FROM $optie");
while($rij = mysqli_fetch_array($tabel)){
$Examennummer = $rij[Examen];
$Antwoord = $rij[Antwoord];
$tijd = $rij[tijd];
if ($Examennummer != ""){
?>
<tr>
<td><?php echo $Examennummer; ?></td>
<td><?php echo $Antwoord; ?></td>
<td><?php echo $tijd; ?></td>
</tr>
<?php
}
}
}
?>
</table>
</div>
<?php
}
?>
$result = mysqli_query($dbCon,"SHOW TABLES FROM $dbname");
$resultaant = mysqli_query($dbCon,"SHOW TABLES FROM $dbname");
$teller = 0;
echo "<br />";
//tellen van tabellen
while($nr = mysqli_fetch_array($resultaant)){
$teller++;
}
$aant = $teller-3;
echo "Aantal gebruikers: " . $aant;
//maken van tabellen
while($row = mysqli_fetch_array($result)){
if ($row[0] != 'examen' and $row[0] != 'code' and $row[0] != 'gebruikers') {
$optie = $row[0];
}else{
$optie = "";
}
?>
<?php if ($optie != ""){
?>
<div class="uitslagen">
<table>
<tr>
<th colspan="3">IP nummer: <?php echo $optie;?></th>
</tr>
<tr>
<th>Examen</th>
<th>Antwoord</th>
<th>Datum en tijd</th>
</tr>
<?php $tabel = mysqli_query($dbCon,"SELECT * FROM $optie");
while($rij = mysqli_fetch_array($tabel)){
$Examennummer = $rij[Examen];
$Antwoord = $rij[Antwoord];
$tijd = $rij[tijd];
if ($Examennummer != ""){
?>
<tr>
<td><?php echo $Examennummer; ?></td>
<td><?php echo $Antwoord; ?></td>
<td><?php echo $tijd; ?></td>
</tr>
<?php
}
}
}
?>
</table>
</div>
<?php
}
?>
- Aar -:
Gelieve in het vervolg bij code de [code][/code]-tags gebruiken.
Hier kan je meer lezen over de mogelijke opmaakcodes.
Alvast bedankt!
Hier kan je meer lezen over de mogelijke opmaakcodes.
Alvast bedankt!
Gewijzigd op 16/01/2015 12:55:37 door - Ariën -
Waar moet ik dat plaatsen?
P.S. Bedankt Aar.
Je kunt overigens TABLE_NAME gebruiken om het resultaat te beperken tot tabelnamen.
Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in /Applications/AMPPS/www/verkeer/administrator/overzicht.php on line 45
IP nummer: esagl_session
Examen Antwoord Datum en tijd
Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in /Applications/AMPPS/www/verkeer/administrator/overzicht.php on line 45
IP nummer: esagl_template_styles
Examen Antwoord Datum en tijd
Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in /Applications/AMPPS/www/verkeer/administrator/overzicht.php on line 45
IP nummer: esagl_update_sites
Examen Antwoord Datum en tijd
Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in /Applications/AMPPS/www/verkeer/administrator/overzicht.php on line 45
IP nummer: esagl_update_sites_extensions
Examen Antwoord Datum en tijd
Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in /Applications/AMPPS/www/verkeer/administrator/overzicht.php on line 45
IP nummer: esagl_user_usergroup_map
Examen Antwoord Datum en tijd
etcetc
Verder moet je wat aan foutcontrole doen om zulke warnings af te vangen.