Raisch
extraordinary bit
Hallo dj-Rob,
Gruß
PHP:
$abfrage1 = "SELECT Titel FROM song_historie ORDER BY id DESC LIMIT 1";
$ergebnis1 = mysql_query( $abfrage1 );
$row = mysql_fetch_assoc( $ergebnis1 );
if ( $aktueller_titel != $row['Titel'] ) {
$eintrag = "INSERT INTO song_historie (Datum, Zeit, Titel, Hoerer)
VALUES ('$datum', '$uhrzeit', '$aktueller_titel', '$anzahl_hoerer')";
$eintragen = mysql_query( $eintrag );
}
Gruß