Hallo Kalk,
die Daten kommen hierher:
$sqlRegStp = "SELECT wochentag, von, bis, gueltig_ab FROM {$from} a JOIN wochentag b ON a.wochentagnr = b.wochentagnr WHERE vertragsnr = :vertragsnr;";
$stmt = $pdo->db->prepare($sqlRegStp);
if(!$stmt->execute(array(':vertragsnr' => $vertragsnr))) {
echo "SQL Fehler <br />";
echo $stmt->queryString."<br />";
echo $stmt->errorInfo()[2];
} else {
while($rowRegStp = $stmt->fetch()) {
$regStp[]['wochentag'] = $rowRegStp['wochentag'];
$regStp[]['von'] = $rowRegStp['von'];
$regStp[]['bis'] = $rowRegStp['bis'];
}
}
Herzliche Grüße,
Kerstin