Moin,
ich lasse so meine Artikel ausgeben
function produkte($mysqli) {
$stmt = $mysqli->prepare("SELECT p_id, p_type, p_pkategorie, p_code, p_hersteller, p_serie, p_geraet, p_bezeichnung, p_bild, p_artnr, p_farbe, p_inhalt, p_preis, p_bestand, p_hinweis, p_status
FROM web_produkte");
$stmt->execute();
$stmt->bind_result($p_id, $p_type, $p_pkategorie, $p_code, $p_hersteller, $p_serie, $p_geraet, $p_bezeichnung, $p_bild, $p_artnr, $p_farbe, $p_inhalt, $p_preis, $p_bestand, $p_hinweis, $p_status);
$stmt->store_result();
if($stmt->num_rows() > 0) {
while ($stmt->fetch()){
$produkte[] = array(
'p_id' => $p_id,
'p_type' => $p_type,
'p_pkategorie' => $p_pkategorie,
'p_code' => $p_code,
'p_hersteller' => $p_hersteller,
'p_serie' => $p_serie,
'p_geraet' => $p_geraet,
'p_bezeichnung' => $p_bezeichnung,
'p_bild' => $p_bild,
'p_artnr' => $p_artnr,
'p_farbe' => $p_farbe,
'p_inhalt' => $p_inhalt,
'p_preis' => $p_preis,
'p_bestand' => $p_bestand,
'p_hinweis' => $p_hinweis,
'p_status' => $p_status
);
}
return $produkte;
}
}
In $stmt->num_rows() steht die Anzahl, richtig? Wie kann ich diese Anzahl auf meiner Seite ausgeben lassen? Ich stehe gerade voll auf dem Schlauch :/