1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
<?php
//$open = fsockopen("s8.viastreaming.net","7660");
/*$open = fsockopen("87.117.228.94","7222");
if ($open) {
fputs($open,"GET /7.html HTTP/1.1\nUser-Agent:Mozilla\n\n");
$read = fread($open,1000);
$text = explode(",",$read);
//$text = substr($text[6], 0, -12);
$text = substr($text[6],0,-14);
} else { $text="Nu pot afisa titlul piesei!"; } */ $text = '<a style="font-size:10px;color:#FFF;" id="cc_stream_info_song"> </a> <script language="javascript" type="text/javascript" src="http://www.streamingpulse.net/sc4/system/streaminfo.js"></script> <script language="javascript" type="text/javascript" src="http://www.streamingpulse.net/sc4/js.php/kptv/streaminfo/rnd0"></script>';
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>songname</title>
<meta http-equiv="refresh" content="10" />
<style type="text/css">
body {
margin-top: 0px;
margin-left: 0px;
}
TD {
background-color: #0B0909;
color: white;
font-family: verdana, ms sans serif;
font-weight: bold;
font-size: 9px;
border-width:0px;
width:203px;
}
</style>
</head>
<body>
<table align="center" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td align="center"><?php echo $text; //echo substr($text, 11, 31);?></td>
</tr>
</table>
</body>
</html>
|