Tellen van records binnen een select maar dan van een ander tabel.
Ik hen een tabel1 deze kan ik ophalen en tonen op het scherm. Ik heb vervolgend ook een andere tabe2 waarin ik het id van tabel1 heb opgenomen.
ik wil nu de gegevens uit tabel1 tonen met het aantal waarvan het id voorkomt in tabel2.
dus zo
ditiseennaamintabel1 (2)
De 2 is omdat de id van ditiseennaamintabel1 2 keer voorkomt in tabel2.
Dit is wat ik heb. (let niet op de inline css... dat ga ik opruimen)
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
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
<?php
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$sql = "SELECT id, naam FROM producten";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
if( $i >= 8 ){ $i = 0; echo '<div style="clear:both;margin-bottom:10px;"></div>'; }
echo '
<a style="color:#000000;text-decoration:none" href="icondetail.php?id='.$row["id"]. '">
<div align="center" style="width:150px;height:100px;background-color:#f4f4f4;float:left;margin-left:10px;padding-top:20px;">
'.$num_rows.'
<img style="width:75px;" src="producten/' . $row["naam"]. '.svg" /><br>
<small>' . $row["id"]. '' . $row["naam"]. '' . $row["omschrijving"]. '</small>
</div></a>';
$i++;
}
} else {
echo "0 results";
}
$conn->close();
?>
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$sql = "SELECT id, naam FROM producten";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
if( $i >= 8 ){ $i = 0; echo '<div style="clear:both;margin-bottom:10px;"></div>'; }
echo '
<a style="color:#000000;text-decoration:none" href="icondetail.php?id='.$row["id"]. '">
<div align="center" style="width:150px;height:100px;background-color:#f4f4f4;float:left;margin-left:10px;padding-top:20px;">
'.$num_rows.'
<img style="width:75px;" src="producten/' . $row["naam"]. '.svg" /><br>
<small>' . $row["id"]. '' . $row["naam"]. '' . $row["omschrijving"]. '</small>
</div></a>';
$i++;
}
} else {
echo "0 results";
}
$conn->close();
?>
Edit:
Ik heb code-tags geplaatst. Gelieve dit in het vervolg zelf toe te voegen aan je bericht.
Zie ook: Veel gestelde vragen: Welke UBB-codes kan ik gebruiken.
Zie ook: Veel gestelde vragen: Welke UBB-codes kan ik gebruiken.
Gewijzigd op 05/05/2018 00:39:03 door - Ariën -
Als niet gegarandeerd is dat alle producten uit tabel #1 voorkomen in tabel #2 is een LEFT JOIN wellicht veiliger, omdat je dan altijd alle producten te zien krijgt uit tabel #1, ook als deze dus niet voorkomen in tabel #2.
Abstract wordt het dus zoiets:
Yesss dank je wel!