コード例 #1
0
ファイル: anonymous.php プロジェクト: nitrotm/ngwinamp2
        for ($j = 0; $j < count($bw_list['files']); $j++) {
            ngwriteident($ident + 3);
            $linkfile = nglink($path . "\\" . $bw_list['files'][$j]);
            $curpath = nglink($bw_path);
            echo "<A CLASS=\"bold italic link\" HREF=\"?host={$host}&action=browse&bw_op=add&bw_addfile={$linkfile}&bw_path={$curpath}\">{$bw_list['files'][$j]}</A><BR>\n";
            $count++;
        }
        echo "<BR>\n";
        $bw_list['files'] = array();
    }
    echo "<BR>\n";
    return $count;
}
$showauth = FALSE;
// connect to NGWinamp server if possible
if ($ngwc->connect($host)) {
    // authenticate with server
    if ($ngwc->authenticate("") == NGWINAMP_AUTH_SUCCESS) {
        // OK : success
        echo "<P CLASS=\"info\">Connected... sending requests...</P>\n";
        // Get stats
        $sn_volume = sprintf("%.01f", $ngwc->sn_getvolume());
        $sn_pan = sprintf("%.01f", $ngwc->sn_getpan());
        $tmp = $ngwc->sn_getpos();
        $sn_pos = sprintf("%.01f", $tmp['pos']);
        $sn_postime = sprintf("%.01f", $tmp['posms'] / 1000.0);
        $sn_length = sprintf("%.01f", $tmp['lengthms'] / 1000.0);
        // retrieve playlist infos
        $tmp = $ngwc->pl_getpos();
        $pl_pos = $tmp['index'];
        $pl_length = $tmp['length'];