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
|
<?php
include("db/dbconnection.php");
$result = mysql_query("SELECT * FROM banner");
if (!$result) { echo 'Could not run query: ' . mysql_error(); exit; } $row = mysql_fetch_array($result);
//print_r($row);
?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Radio</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2"> <link href="file:///C|/depe_Home_degrupat_peCDRW/KPTV_FM/WEB_site/style/style.css" rel="stylesheet" type="text/css"> </head> <body background="test_background.gif"> <table border="0" width="950" cellspacing="1" cellpadding="1" align="center" border="1"> <tr> <td colspan="2" align="center"><?= $row['top1']; ?></td> </tr> <tr> <td colspan="2"> </td> </tr> <tr> <td colspan="2" align="center"><?= $row['top2']; ?></td> </tr> <tr> <td align="right"><object type="application/x-shockwave-flash" height="295" width="353" id="jtv_player_flash" data="http://www.justin.tv/widgets/jtv_player.swf?channel=kptvfm" bgcolor="#000000"><param name="allowFullScreen" value="true" /><param name="movie" value="http://www.justin.tv/widgets/jtv_player.swf" /><param name="flashvars" value="channel=kptvfm&auto_play=true&start_volume=0.25" /></object></td> <td align="left" style="padding-top:40px;"><div style="width:374px"><style>.mcrmeebo { display: block; background:url("http://widget.meebo.com/r.gif") no-repeat top right; } .mcrmeebo:hover { background:url("http://widget.meebo.com/ro.gif") no-repeat top right; } </style><object width="374" height="295"><param name="movie" value="http://widget.meebo.com/mcr.swf?id=GdTuSlrrla"></param><embed src="http://widget.meebo.com/mcr.swf?id=GdTuSlrrla" type="application/x-shockwave-flash" width="374" height="295" /></object><a target="_BLANK" href="http://www.meebo.com/rooms/" class="mcrmeebo"><img alt="Create a Meebo Chat Room" src="http://widget.meebo.com/b.gif" width="374" height="45" style="border:0px"/></a></div></td> </tr> <tr> <td align="right"><?= $row['bottom1']; ?></td> <td align="left"><?= $row['bottom2']; ?></td> </tr> </table> </body> </html> <?php mysql_free_result($result); ?>
|