Hi Alle,
trau mich fast nicht, aber es funkt einfach nicht und ich hab keinen Schimmer warum.
date_format gibt nix aus, da ohne formatierung das abgefragte Datum in Form von yyyy-mm-dd hh:mm:ss ausgegeben wird. hat jemand eine Tipp?
Entweder akute Blindheit oder ein Trick? Das ist die Frage.. ich poste mal..
Ausgabe dann:
Danke!
trau mich fast nicht, aber es funkt einfach nicht und ich hab keinen Schimmer warum.
date_format gibt nix aus, da ohne formatierung das abgefragte Datum in Form von yyyy-mm-dd hh:mm:ss ausgegeben wird. hat jemand eine Tipp?
Entweder akute Blindheit oder ein Trick? Das ist die Frage.. ich poste mal..
PHP-Code:
$sql="SELECT bestellte_produkte.bestellnr,bestellte_produkte.produktnr,
bestellte_produkte.usernr, DATE_FORMAT (bestellte_produkte.dtc,'%d.%m.%Y'),produkt.Produktnr,
produkt.Produktname, produkt.Medienform FROM bestellte_produkte,produkt
WHERE bestellte_produkte.usernr='$_SESSION[usernr]'
AND bestellte_produkte.produktnr=produkt.Produktnr ORDER BY bestellte_produkte.dtc DESC";
PHP-Code:
$res= mysql_query($sql,$dbconnect) or die ('Das war nichts, mySQL sagt: '.mysql_error().'<br><br>Query war: '.$sql);
while ($ds=mysql_fetch_array($res))
{
echo "<tr>
<td>$ds[bestellnr]</td>
<td>$ds[Produktnr]</td>
<td>$ds[Produktname]</td>
<td>$ds[Medienform]</td>
<td>$ds[dtc]</td>
</tr>";
}
Kommentar