how can I display a message in the nowplaying page if songtype is NOT C or S
I have this Php code
Code: Selecteer alles
<?
if ("songlist.songtype = 'S'") {
// do stuff
echo "$currentSong->artist - $currentSong->title";
}
else
echo "DJ Sessions";
?>
Thank you