projects
/
mpd-web.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Вычищение старых конструкций PHP + многочисленная доводка по мелочи.
[mpd-web.git]
/
ajax
/
mpd.php
1
<?php
2
3
include('../config/config.php');
4
include('../system/mpd_class.php');
5
include('../system/helper.php');
6
7
$mpd = new mpd($mpd_host,$mpd_port,$mpd_password);
8
9
if($mpd->connected != 1){
10
echo "Server not available!";
11
exit(1);
12
}
13
14
?>