Search results

  1. B

    [Web site] Show current track title, cover art, recent tracks

    I added this in php script: $max_next = 1; $nextsong = $_REQUEST['next']; $n = htmlspecialchars($nextsong); $file2 = 'nextplaying.txt'; $next = file($file2, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); $next = array_slice($next, 0, $max_next); $r2 = fopen($file2, 'wb'); if ($r2 !== false)...
  2. B

    [Web site] Show current track title, cover art, recent tracks

    Will that prevent jingles from appearing instead of song names??
  3. B

    [Web site] Show current track title, cover art, recent tracks

    Hi, Is it possible to edit this script that would display only one title of the next song?  Since i saw it through the API function it is possible to display artwork of the next song (ACTION: nexttrackartworkbut) but there are nowhere to display the title of the next song, so this turns out to...
Back
Top