PasteSite.Com

Recent Pastes

Sign Up!

PasteSite is open to the public, but with limited features. Register to be able to modify access rights, track your pastes and more...

Change the theme

If you prefer reading light text on a dark background to dark text on a light background, then you might want to try the dark theme.

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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<?php require_once 'functions.php';
if (isset($_POST['request'])){
    if ($_POST['request'] == ''){
        $msg = "Please fill out the request form.";
    }else{
        if ($_POST['user'] == ''){
            $_POST['user'] = '"UNKNOWN"';
        }
        if (send_request($_POST['user'],$_POST['request'])){
            $msg = "Your request for ".stripslashes($_POST['request'])." has been submitted, Thank you!";
        } else {
            $msg = "Sorry, Your request could not be submitted.";
        }
    }
}?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Alliance Nexus Radio Station</title>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<link rel="stylesheet" href="css/autocomplete.css" type="text/css" />
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
        <script type="text/javascript" src="js/jquery.autocomplete.js"></script>
        <script type="text/javascript">
            $(document).ready(function(){
                function findValueCallback(event, data, formatted) {
                    $("<li>").html( !data ? "No match!" : "Selected: " + formatted).appendTo("#result");
                }
                function formatItem(row) {
                    return row[0] + " (Song: " + row[1] + ")";
                }
                function formatResult(row) {
                    return "Artist: " + row[0] + " Song: " + row[1];
                } 
                $("#autocomplete").autocomplete('data.php', {
                    width: 350,
                    multiple: false,
                    matchContains: true,
                    formatItem: formatItem,
                    formatResult: formatResult
                }); 
                var listopen = 0;
                $('#list').click(function(){
                    if (listopen == 0) {
                        $(this).empty();
                        $(this).append('Click here to close full playlist.')
                        $('#playlist').load('data.php?list=1');
                        listopen = 1;
                    } else {
                        $(this).empty();
                        $(this).append('Click here to view full playlist.')
                        $('#playlist').empty();
                        listopen = 0;
                    }
                });
            });
        </script>
</head>
 
 
<body>
    <div id="header-bg">
        <div id="header">
            <div id="logo">
                <img src="./images/radio-banner.png" alt="Radio Evony" />
                <object width="310" height="68" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">
                    <param value="http://www.evony.com/image/logo.swf" name="movie"/>
                    <param value="high" name="quality"/>
                    <param value="transparent" name="wmode"/>
                    <param value="opaque" name="wmode"/>
                    <embed width="310" height="68" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" wmode="transparent" quality="high" src="http://www.evony.com/image/logo.swf"/>
                </object>
                <?php echo getStatus(); ?>
            </div>
            <div id="nav">
                <ul>                                                                                                                      
                    <li class="index current"><a href="index.php" title=""></a></li>
                    <li class="interact"><a href="interact.php" title=""></a></li>
                    <li class="requests"><a href="request.php" title=""></a></li>
                    <li class="shows"><a href="shows.php" title=""></a></li>
                    <li class="news"><a href="news.php" title=""></a></li>
                    <li class="gallery"><a href="gallery.php" title=""></a></li>
                    <li class="contact"><a href="contactus.php" title=""></a></li>
                    <li class="links"><a href="links.php" title=""></a></li>
                </ul>
            </div>
        </div>
    </div>
    <div id="main">
        <div id="main_content">
            <div id="left">
                <div class="left_content">
                    <div class="left_topper"><div class="toptitle">Evony Radio Station!</div></div>
                    <div class="title">Welcome to our radio station</div>
            <span><?php echo $msg; ?></span>
        <form action="<?php echo $_SERVER['PHP_SELF']; ?>" enctype="multipart/form-data" method="post" >
            <table>
                <tr>
                    <td>User: </td>
                    <td><input type="text" name="user" /></td>
                </tr>
                <tr>
                    <td>Request:</td>
                    <td><input id="autocomplete" name="request" style="width:350px;" /></td>
                </tr>
            </table>
            <input type="submit" value="Submit Request" name="submit" />
         </form>
        <div id="list">Click here to view full playlist.</div>
            <div id="playlist" style="overflow: auto; max-height:300px; ">
            
            </div>
    </p>  
 
                     <div class="title">Latest Shows</div>
                     
                     
                    <div class="left_shows">
                        <div class="show_date">date</div>
                        <div class="show_text_content">
                Event
                        </div> 
                        <a href="news.php" class="more_details">more details</a>  
                    </div>
                    
                    
                    
                    
                    <div class="title">Quick Links</div>  
                    
                    <div class="photo_gallery">
                        <table class="photo_table"><tr><td colspan="4">Click To Tune-In with your media player</td></tr><tr><td><a href="http://65.60.19.43:8000/listen.pls"><img src="http://www.makeavoice.com/shoutcast/images/winampicon30.png"/></a></td><td><a href="http://www.makeavoice.com/shoutcast/tuneinlinks.php?file=asx&host=65.60.19.43&port=8000"><img src="http://www.makeavoice.com/shoutcast/images/wmpicon30.png" /></a></td><td><a href="http://www.makeavoice.com/shoutcast/tuneinlinks.php?file=m3u&host=65.60.19.43&port=8000"><img src="http://www.makeavoice.com/shoutcast/images/itunesicon30.png"/></a></td><td><a href="http://www.makeavoice.com/shoutcast/tuneinlinks.php?file=ram&host=65.60.19.43&port=8000"><img src="http://www.makeavoice.com/shoutcast/images/realicon30.png"/></a></td></tr></table>
                    </div>
                    <br>
                    <form img style="text-align:center" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                        <input type="hidden" name="cmd" value="_s-xclick">
                        <input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----
                        ">
                        <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
                        <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
                    </form>
                    <div class="left_bottom"></div>
                </div>
            </div>
            <div id="right">
                <div id="right_content"><div class="right_topper"></div>
            <a href="tunein.php" class="listen_live"><img src="images/listen_live.png" alt="" title="" border="0" /></a>
            
          
      
    
         <div class="title"><a href="news.php" title="">Our News</a></div>
           <div class="right_news">
            <?php displayNews('1') ?> 
        </div>
         
        <div class="right_news">
            <?php displayNews('2') ?> 
        </div>  
      
        
        <div class="right_news">
            <?php displayNews('3') ?>
        </div>    
        
        
        <div class="right_news">
            <?php displayNews('4') ?> 
        </div>
                <div class="right_bottom"></div>
            </div>
            </div>
            <div class="clear"></div>
        </div>
        <div class="clear"></div>
        <div id="footer">
            <div id="footer_info">
                <div id="footerbg">
                    <p>Copyright &copy; 2009, WJXM Radio Station. All right Reserved. Special thanks to TheSharpieOne and Zymic!</p>
                </div>
            </div>
        </div>
    </div>
    <div class="clear"></div>
 
</body>
</html>

Reply to This Paste

(leave blank to make this paste permanent)
(if set as private)