Changeset 637858
- Timestamp:
- 12/12/2012 04:35:45 PM (13 years ago)
- Location:
- live-score
- Files:
-
- 10 edited
- 1 copied
-
tags/1.7 (copied) (copied from live-score/trunk)
-
tags/1.7/livedet.php (modified) (2 diffs)
-
tags/1.7/livescore.php (modified) (1 diff)
-
tags/1.7/readme.txt (modified) (1 diff)
-
tags/1.7/screenshot-1.jpg (modified) (previous)
-
tags/1.7/styles.php (modified) (1 diff)
-
trunk/livedet.php (modified) (2 diffs)
-
trunk/livescore.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/screenshot-1.jpg (modified) (previous)
-
trunk/styles.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
live-score/tags/1.7/livedet.php
r45446 r637858 1 1 <? 2 2 error_reporting(0); 3 if ($_REQUEST['cmd']=="update") { 4 ob_start(); 5 include("livedat.php"); 6 $page = ob_get_clean(); 7 echo $page; 8 exit; 9 } 3 10 include_once "styles.php"; 11 $plugin_url = plugins_url(); 12 $_REQUEST['url']=$plugin_url; 13 $var6='PGEgaHJlZj0iaHR0cDovL3d3dy5pZGRhYW1lcmtlemkuY29tIiBzdHlsZT0iY29sb3I6IHJnYigyMzAsMjMwLDIzMCkiIHRhcmdldD0iX2JsYW5rIj5pZGRhYTwvYT4='; 14 $var7='PGEgaHJlZj0iaHR0cDovL3d3dy5pZGRhYW1lcmtlemkuY29tIiBzdHlsZT0iY29sb3I6IHJnYigyMzAsMjMwLDIzMCkiIHRhcmdldD0iX2JsYW5rIj5pZGRhYTwvYT4='; 4 15 ?> 16 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> 5 17 <script language="javascript"> 6 7 opt="top=10,left=10,resizeable,scrollbars=yes,status=no"; 8 function goals(){ 9 window.open("","goals","width=530,height=250,"+opt); 18 function update_live() { 19 $.ajax({ 20 type: 'POST', 21 url: '<?=$plugin_url?>/live-score/livedet.php', 22 data: 'cmd=update&url=<?=$plugin_url?>', 23 success: function(result) { 24 $('#live_score_table').html(result); 25 } 26 }); 27 return false; 28 10 29 } 11 function stats(){ 12 window.open("","stats","width=500,height=450,"+opt); 13 } 14 function mr(){ 15 window.open("","mr","width=720,height=550,"+opt); 16 } 17 function h2h(){ 18 window.open("","h2h","width=560,height=550,"+opt); 19 } 20 21 22 23 </script> 24 25 26 <script> 27 <!-- 28 29 //enter refresh time in "minutes:seconds" Minutes should range from 0 to inifinity. Seconds should range from 0 to 59 30 var limit="2:00" 31 32 if (document.images){ 33 var parselimit=limit.split(":") 34 parselimit=parselimit[0]*60+parselimit[1]*1 35 } 36 function beginrefresh(){ 37 if (!document.images) 38 return 39 if (parselimit==1) 40 window.location.reload() 41 else{ 42 parselimit-=1 43 curmin=Math.floor(parselimit/60) 44 cursec=parselimit%60 45 if (curmin!=0) 46 curtime=curmin+" minutes and "+cursec+" seconds left until page refresh!" 47 else 48 curtime=cursec+" seconds left until page refresh!" 49 //window.status=curtime 50 setTimeout("beginrefresh()",1000) 51 } 52 } 53 54 window.onload=beginrefresh 55 //--> 30 setInterval("update_live()",60000); 56 31 </script> 57 32 58 33 <div id="live_score_plog" align=center> 59 <?php 60 ini_set(base64_decode($var4), base64_decode($var5)); 61 $st=array("","1T","HT","2T","ET","11M","FT","FT","Pst","AET","Pen","Ssp"); 62 $aylar=array("January","February","March","April","May","June","July","August","September","October","November","December"); 63 64 $html=file_get_contents(base64_decode($var1)); 65 66 $kriter1='comp="'; 67 $kriter2='game=Array'; 68 $goster = eregi("$kriter1(.*)$kriter2", $html, $yazdir2); 69 $yazdir2 = str_replace('comp="', "", $yazdir2); 70 $yazdir2 = str_replace("game=Array", "", $yazdir2); 71 $yazdir2 = str_replace('";', "", $yazdir2); 72 $kriter1='game=Array'; 73 $kriter2='comp2='; 74 $goster = eregi("$kriter1(.*)$kriter2", $html, $yazdir3); 75 $yazdir3 = str_replace('game=Array(', "", $yazdir3); 76 $yazdir3 = str_replace('comp2=', "", $yazdir3); 77 $yazdir3 = str_replace(');', "", $yazdir3); 78 $yazdir3 = str_replace('"', "", $yazdir3); 79 80 $maclar = explode(",", $yazdir3[0]); 81 82 83 84 $ligler = explode("|", $yazdir2[0]); 85 $say=count($ligler); 86 echo "<table cellSpacing=0 cellPadding=2 width=430 border=0 class=tbl>"; 87 88 for ($i = 0; $i < $say/3; $i++) { 89 $m=3*$i; 90 if ($ligler[$m+1]>0) { 91 $ay = explode("-", $ligler[$m+1]); 92 $yaz.="<tr><td colspan=6 align=right><b>".$ay[1]." ".$aylar[$ay[0]-1]."</b> </td></tr>"; 93 } 94 95 $yaz.= "<tr><TD colspan=5 class=cmp> ".$ligler[$m+2]."</TD><TD align=right class=cmp>"; 96 if ($ligler[$m]>0) $yaz.= "<a target=stats href='".get_settings('home') ."/wp-content/plugins/live-score/stats.php?w=".$ligler[$m]."' onclick='javascript:stats()' class=std >Stats</a>"; 97 $yaz.=" </TD></tr>"; 98 $mac_detay=explode("|", $maclar[$i]); 99 $_macsay=count($mac_detay); 100 for ($j = 0; $j < $_macsay/8; $j++) { 101 $k=8*$j; 102 $zaman = explode(":", $mac_detay[$k+1]); 103 $saat=($zaman[0]+1); 104 if ($saat>=24) { $saat = -(24 - $saat); } 105 if ($saat<=9) { $saat="0".$saat; } 106 107 $yaz.="<tr align=center>"; 108 $yaz.="<td width=30>".$saat.":".$zaman[1]."</td>"; 109 $yaz.="<td width=25><span id=ss".$mac_detay[$k]."><span class=".(($mac_detay[$k+2]!=0&&$mac_detay[$k+2]<6)?'rd':'bk').">".($mac_detay[$k+2]<0?-$mac_detay[$k+2]:$st[$mac_detay[$k+2]])."</span></span></td>"; 110 $yaz.="<td width=135 align=right class=gm".($j%2?2:1).">".$mac_detay[$k+3]."</td>"; 111 $yaz.="<td width=50 id=res".$mac_detay[$k]." class=gm".($j%2?2:1).">".($mac_detay[$k+2]!=0?"<a target=goals href='".get_settings('home') ."/wp-content/plugins/live-score/goals.php?g=".$mac_detay[$k]."' onclick='javascript:goals()' class=res>".$mac_detay[$k+4]." : ".$mac_detay[$k+5]."</a>":"<b>- : -</b>")."</td>"; 112 $yaz.="<td width=135 align=left class=gm".($j%2?2:1).">".$mac_detay[$k+6]."</td>"; 113 $yaz.="<td width=55 class=rd id=det".$mac_detay[$k].">".($mac_detay[$k+7]!=1?"":"<B>GOAL!!!</B>")."</td>"; 114 $yaz.="</tr>"; 115 116 } 117 $yaz.="<tr><td colspan=6 height=10><spacer height=10 type=block></td></tr>"; 118 119 120 } 121 echo $yaz; 122 echo "</table>"; 34 <div id="live_score_table"> 35 <? include("livedat.php"); ?> 36 </div> 37 <p align="center" style="margin-top: 20px;"> 38 <? 123 39 $num = rand(1, 2); 124 ?>125 <p align="center">126 <?127 40 switch ($num) { 128 41 Case 1: … … 130 43 break; 131 44 Case 2: 132 echo base64_decode($var 6);45 echo base64_decode($var7); 133 46 break; 134 47 } -
live-score/tags/1.7/livescore.php
r483330 r637858 2 2 /* 3 3 Plugin Name: LiveScore 4 Version: 1. 64 Version: 1.7 5 5 Plugin URI: http://www.iddaamerkezi.com/live-score/ 6 6 Description: This plugin adds online live scores to your blog. Before activate this plugin you must create a new page with name 'Live Score' -
live-score/tags/1.7/readme.txt
r483330 r637858 2 2 Contributors: iddaamerkezi.com 3 3 Donate link: http://www.iddaamerkezi.com/ 4 Tags: live score, livescore, live scores, livescores, iddaa, iddaa tahminleri4 Tags: live score, livescore, live scores, livescores, iddaa, iddaa tahminleri, live soccer scores 5 5 Requires at least: 2.0.0 6 Tested up to: 3. 37 Stable tag: 1. 66 Tested up to: 3.5 7 Stable tag: 1.7 8 8 9 9 This plugin adds online live scores to your blog. -
live-score/tags/1.7/styles.php
r41752 r637858 1 1 <style> 2 .tbl {font-family:Tahoma; font-size:8pt;} 3 .cmp {color:#ffffff; background-color:#008000; font-weight:bold;} 4 .gm1 {color:#000000; background-color:#D7FFD7;} 5 .gm2 {color:#000000; background-color:#f5f5f5;} 6 .res {color:#0000ff; text-decoration:none; font-weight:bold;} 7 .res_{color:#0000ff; text-decoration:underline; font-weight:bold;} 8 .std {color:#ffffff; text-decoration:none; font-weight:bold;} 9 .std_{color:#ffffff; text-decoration:underline; font-weight:bold;} 10 .a2 {color:#000000; text-decoration:none;} 11 .a2_{color:#000000; text-decoration:underline;} 12 .rd{color:#009933;} 13 .bk{color:#000000;} 14 .bg0{background-color:#f5f5f5;} 15 .h2h {color:#0000ff; font-size:10px; text-decoration:none;} 16 .h2h_{color:#0000ff; font-size:10px; text-decoration:underline;} 17 .mr {color:#0000ff; font-size:10px; text-decoration:none;} 18 .mr_{color:#0000ff; font-size:10px; text-decoration:underline;} 19 .pwd{width:430; text-align:right; font-weight:bold;} 20 .upd{width:430; font-weight:bold; text-align:left; color:#cc0000;} 21 .fsh0{color:#ffffff; font-size:12px; visibility:hidden;} 22 .fsh1{color:#cc0000; font-size:12px; visibility:visible;} 2 .league-table, .league-wc, .league-multi, .league-cricket, .right-bar .league-table { color: #000; border-collapse: collapse; width: 600px; margin-top: 4px; } 3 .league-table .league a, .league-multi th a, .league-wc th a {color: #ccc;} 4 .league-table .league a:hover, .league-multi th a:hover, .league-wc th a:hover {text-decoration: underline; color: #fff;} 5 6 7 .league-table th { color: #ccc; height: 22px; background-color: #0b761f; text-align: left; border-top: solid 1px #666; border-bottom: solid 1px #666; } 8 .league-table th.footer {color: #ddd;} 9 .league-table td { background-color: #e6ffeb; color: #000; padding: 2px 0; border-bottom: solid 1px #666; } 10 .league-table .even td { background-color: #dfdfdf; color: #000; } 11 .league-table .fd { width: 42px; padding-left: 4px; } 12 .league-table .fh, .league-table .fa { width: 212px; } 13 .league-table .fh { text-align: right; } 14 .league-table .fs { width: 52px; text-align: center; } 15 .league-table .fs:hover {text-decoration: none!important; cursor: default!important; color: black;} 16 17 th .league, th .date { display: block; height: 18px; line-height: 18px; } 18 th .league { margin-left: 4px; float: left; } 19 th .date { margin-right: 4px; font-size: 11px; float: right; } 23 20 </style> 24 <?25 //DON'T CHANGE BELOW CODES START26 $var1='aHR0cDovL3NvY2Nlci5hY3RpdmVzY29yZXMuY29tL2FzL2ZyZWUvc29jY2Vyc3RhdHMyL2luZGV4LnBocA==';27 $var2='aHR0cDovL3NvY2Nlci5hY3RpdmVzY29yZXMuY29tL2FzL2ZyZWUvc29jY2Vyc3RhdHMyL2dvYWxzLnBocA==';28 $var3='aHR0cDovL3NvY2Nlci5hY3RpdmVzY29yZXMuY29tL2FzL2ZyZWUvc29jY2Vyc3RhdHMyL3N0YW5kaW5ncy5waHA=';29 $var4='dXNlcl9hZ2VudA==';30 $var5='TW96aWxsYS80LjAgKGNvbXBhdGlibGU7IE1TSUUgNi4wOyBXaW5kb3dzIE5UIDUuMTsgU1YxOyAuTkVUIENMUiAxLjAuMzcwNTsgLk5FVCBDTFIgMS4xLjQzMjIp';31 $var6='PGEgaHJlZj0iaHR0cDovL3d3dy5pZGRhYW1lcmtlemkuY29tIiBzdHlsZT0iY29sb3I6IHJnYigyMzAsMjMwLDIzMCkiIHRhcmdldD0iX2JsYW5rIj5pZGRhYTwvYT4=';32 $var7='PGEgaHJlZj0iaHR0cDovL3d3dy5hbGNhbXNhdGNhbS5jb20iIHN0eWxlPSJjb2xvcjogcmdiKDIzMCwyMzAsMjMwKSIgdGFyZ2V0PSJfYmxhbmsiPnNhaGliaW5kZW48L2E+';33 //DON'T CHANGE BELOW CODES END34 ?> -
live-score/trunk/livedet.php
r45446 r637858 1 1 <? 2 2 error_reporting(0); 3 if ($_REQUEST['cmd']=="update") { 4 ob_start(); 5 include("livedat.php"); 6 $page = ob_get_clean(); 7 echo $page; 8 exit; 9 } 3 10 include_once "styles.php"; 11 $plugin_url = plugins_url(); 12 $_REQUEST['url']=$plugin_url; 13 $var6='PGEgaHJlZj0iaHR0cDovL3d3dy5pZGRhYW1lcmtlemkuY29tIiBzdHlsZT0iY29sb3I6IHJnYigyMzAsMjMwLDIzMCkiIHRhcmdldD0iX2JsYW5rIj5pZGRhYTwvYT4='; 14 $var7='PGEgaHJlZj0iaHR0cDovL3d3dy5pZGRhYW1lcmtlemkuY29tIiBzdHlsZT0iY29sb3I6IHJnYigyMzAsMjMwLDIzMCkiIHRhcmdldD0iX2JsYW5rIj5pZGRhYTwvYT4='; 4 15 ?> 16 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> 5 17 <script language="javascript"> 6 7 opt="top=10,left=10,resizeable,scrollbars=yes,status=no"; 8 function goals(){ 9 window.open("","goals","width=530,height=250,"+opt); 18 function update_live() { 19 $.ajax({ 20 type: 'POST', 21 url: '<?=$plugin_url?>/live-score/livedet.php', 22 data: 'cmd=update&url=<?=$plugin_url?>', 23 success: function(result) { 24 $('#live_score_table').html(result); 25 } 26 }); 27 return false; 28 10 29 } 11 function stats(){ 12 window.open("","stats","width=500,height=450,"+opt); 13 } 14 function mr(){ 15 window.open("","mr","width=720,height=550,"+opt); 16 } 17 function h2h(){ 18 window.open("","h2h","width=560,height=550,"+opt); 19 } 20 21 22 23 </script> 24 25 26 <script> 27 <!-- 28 29 //enter refresh time in "minutes:seconds" Minutes should range from 0 to inifinity. Seconds should range from 0 to 59 30 var limit="2:00" 31 32 if (document.images){ 33 var parselimit=limit.split(":") 34 parselimit=parselimit[0]*60+parselimit[1]*1 35 } 36 function beginrefresh(){ 37 if (!document.images) 38 return 39 if (parselimit==1) 40 window.location.reload() 41 else{ 42 parselimit-=1 43 curmin=Math.floor(parselimit/60) 44 cursec=parselimit%60 45 if (curmin!=0) 46 curtime=curmin+" minutes and "+cursec+" seconds left until page refresh!" 47 else 48 curtime=cursec+" seconds left until page refresh!" 49 //window.status=curtime 50 setTimeout("beginrefresh()",1000) 51 } 52 } 53 54 window.onload=beginrefresh 55 //--> 30 setInterval("update_live()",60000); 56 31 </script> 57 32 58 33 <div id="live_score_plog" align=center> 59 <?php 60 ini_set(base64_decode($var4), base64_decode($var5)); 61 $st=array("","1T","HT","2T","ET","11M","FT","FT","Pst","AET","Pen","Ssp"); 62 $aylar=array("January","February","March","April","May","June","July","August","September","October","November","December"); 63 64 $html=file_get_contents(base64_decode($var1)); 65 66 $kriter1='comp="'; 67 $kriter2='game=Array'; 68 $goster = eregi("$kriter1(.*)$kriter2", $html, $yazdir2); 69 $yazdir2 = str_replace('comp="', "", $yazdir2); 70 $yazdir2 = str_replace("game=Array", "", $yazdir2); 71 $yazdir2 = str_replace('";', "", $yazdir2); 72 $kriter1='game=Array'; 73 $kriter2='comp2='; 74 $goster = eregi("$kriter1(.*)$kriter2", $html, $yazdir3); 75 $yazdir3 = str_replace('game=Array(', "", $yazdir3); 76 $yazdir3 = str_replace('comp2=', "", $yazdir3); 77 $yazdir3 = str_replace(');', "", $yazdir3); 78 $yazdir3 = str_replace('"', "", $yazdir3); 79 80 $maclar = explode(",", $yazdir3[0]); 81 82 83 84 $ligler = explode("|", $yazdir2[0]); 85 $say=count($ligler); 86 echo "<table cellSpacing=0 cellPadding=2 width=430 border=0 class=tbl>"; 87 88 for ($i = 0; $i < $say/3; $i++) { 89 $m=3*$i; 90 if ($ligler[$m+1]>0) { 91 $ay = explode("-", $ligler[$m+1]); 92 $yaz.="<tr><td colspan=6 align=right><b>".$ay[1]." ".$aylar[$ay[0]-1]."</b> </td></tr>"; 93 } 94 95 $yaz.= "<tr><TD colspan=5 class=cmp> ".$ligler[$m+2]."</TD><TD align=right class=cmp>"; 96 if ($ligler[$m]>0) $yaz.= "<a target=stats href='".get_settings('home') ."/wp-content/plugins/live-score/stats.php?w=".$ligler[$m]."' onclick='javascript:stats()' class=std >Stats</a>"; 97 $yaz.=" </TD></tr>"; 98 $mac_detay=explode("|", $maclar[$i]); 99 $_macsay=count($mac_detay); 100 for ($j = 0; $j < $_macsay/8; $j++) { 101 $k=8*$j; 102 $zaman = explode(":", $mac_detay[$k+1]); 103 $saat=($zaman[0]+1); 104 if ($saat>=24) { $saat = -(24 - $saat); } 105 if ($saat<=9) { $saat="0".$saat; } 106 107 $yaz.="<tr align=center>"; 108 $yaz.="<td width=30>".$saat.":".$zaman[1]."</td>"; 109 $yaz.="<td width=25><span id=ss".$mac_detay[$k]."><span class=".(($mac_detay[$k+2]!=0&&$mac_detay[$k+2]<6)?'rd':'bk').">".($mac_detay[$k+2]<0?-$mac_detay[$k+2]:$st[$mac_detay[$k+2]])."</span></span></td>"; 110 $yaz.="<td width=135 align=right class=gm".($j%2?2:1).">".$mac_detay[$k+3]."</td>"; 111 $yaz.="<td width=50 id=res".$mac_detay[$k]." class=gm".($j%2?2:1).">".($mac_detay[$k+2]!=0?"<a target=goals href='".get_settings('home') ."/wp-content/plugins/live-score/goals.php?g=".$mac_detay[$k]."' onclick='javascript:goals()' class=res>".$mac_detay[$k+4]." : ".$mac_detay[$k+5]."</a>":"<b>- : -</b>")."</td>"; 112 $yaz.="<td width=135 align=left class=gm".($j%2?2:1).">".$mac_detay[$k+6]."</td>"; 113 $yaz.="<td width=55 class=rd id=det".$mac_detay[$k].">".($mac_detay[$k+7]!=1?"":"<B>GOAL!!!</B>")."</td>"; 114 $yaz.="</tr>"; 115 116 } 117 $yaz.="<tr><td colspan=6 height=10><spacer height=10 type=block></td></tr>"; 118 119 120 } 121 echo $yaz; 122 echo "</table>"; 34 <div id="live_score_table"> 35 <? include("livedat.php"); ?> 36 </div> 37 <p align="center" style="margin-top: 20px;"> 38 <? 123 39 $num = rand(1, 2); 124 ?>125 <p align="center">126 <?127 40 switch ($num) { 128 41 Case 1: … … 130 43 break; 131 44 Case 2: 132 echo base64_decode($var 6);45 echo base64_decode($var7); 133 46 break; 134 47 } -
live-score/trunk/livescore.php
r483330 r637858 2 2 /* 3 3 Plugin Name: LiveScore 4 Version: 1. 64 Version: 1.7 5 5 Plugin URI: http://www.iddaamerkezi.com/live-score/ 6 6 Description: This plugin adds online live scores to your blog. Before activate this plugin you must create a new page with name 'Live Score' -
live-score/trunk/readme.txt
r483330 r637858 2 2 Contributors: iddaamerkezi.com 3 3 Donate link: http://www.iddaamerkezi.com/ 4 Tags: live score, livescore, live scores, livescores, iddaa, iddaa tahminleri4 Tags: live score, livescore, live scores, livescores, iddaa, iddaa tahminleri, live soccer scores 5 5 Requires at least: 2.0.0 6 Tested up to: 3. 37 Stable tag: 1. 66 Tested up to: 3.5 7 Stable tag: 1.7 8 8 9 9 This plugin adds online live scores to your blog. -
live-score/trunk/styles.php
r41752 r637858 1 1 <style> 2 .tbl {font-family:Tahoma; font-size:8pt;} 3 .cmp {color:#ffffff; background-color:#008000; font-weight:bold;} 4 .gm1 {color:#000000; background-color:#D7FFD7;} 5 .gm2 {color:#000000; background-color:#f5f5f5;} 6 .res {color:#0000ff; text-decoration:none; font-weight:bold;} 7 .res_{color:#0000ff; text-decoration:underline; font-weight:bold;} 8 .std {color:#ffffff; text-decoration:none; font-weight:bold;} 9 .std_{color:#ffffff; text-decoration:underline; font-weight:bold;} 10 .a2 {color:#000000; text-decoration:none;} 11 .a2_{color:#000000; text-decoration:underline;} 12 .rd{color:#009933;} 13 .bk{color:#000000;} 14 .bg0{background-color:#f5f5f5;} 15 .h2h {color:#0000ff; font-size:10px; text-decoration:none;} 16 .h2h_{color:#0000ff; font-size:10px; text-decoration:underline;} 17 .mr {color:#0000ff; font-size:10px; text-decoration:none;} 18 .mr_{color:#0000ff; font-size:10px; text-decoration:underline;} 19 .pwd{width:430; text-align:right; font-weight:bold;} 20 .upd{width:430; font-weight:bold; text-align:left; color:#cc0000;} 21 .fsh0{color:#ffffff; font-size:12px; visibility:hidden;} 22 .fsh1{color:#cc0000; font-size:12px; visibility:visible;} 2 .league-table, .league-wc, .league-multi, .league-cricket, .right-bar .league-table { color: #000; border-collapse: collapse; width: 600px; margin-top: 4px; } 3 .league-table .league a, .league-multi th a, .league-wc th a {color: #ccc;} 4 .league-table .league a:hover, .league-multi th a:hover, .league-wc th a:hover {text-decoration: underline; color: #fff;} 5 6 7 .league-table th { color: #ccc; height: 22px; background-color: #0b761f; text-align: left; border-top: solid 1px #666; border-bottom: solid 1px #666; } 8 .league-table th.footer {color: #ddd;} 9 .league-table td { background-color: #e6ffeb; color: #000; padding: 2px 0; border-bottom: solid 1px #666; } 10 .league-table .even td { background-color: #dfdfdf; color: #000; } 11 .league-table .fd { width: 42px; padding-left: 4px; } 12 .league-table .fh, .league-table .fa { width: 212px; } 13 .league-table .fh { text-align: right; } 14 .league-table .fs { width: 52px; text-align: center; } 15 .league-table .fs:hover {text-decoration: none!important; cursor: default!important; color: black;} 16 17 th .league, th .date { display: block; height: 18px; line-height: 18px; } 18 th .league { margin-left: 4px; float: left; } 19 th .date { margin-right: 4px; font-size: 11px; float: right; } 23 20 </style> 24 <?25 //DON'T CHANGE BELOW CODES START26 $var1='aHR0cDovL3NvY2Nlci5hY3RpdmVzY29yZXMuY29tL2FzL2ZyZWUvc29jY2Vyc3RhdHMyL2luZGV4LnBocA==';27 $var2='aHR0cDovL3NvY2Nlci5hY3RpdmVzY29yZXMuY29tL2FzL2ZyZWUvc29jY2Vyc3RhdHMyL2dvYWxzLnBocA==';28 $var3='aHR0cDovL3NvY2Nlci5hY3RpdmVzY29yZXMuY29tL2FzL2ZyZWUvc29jY2Vyc3RhdHMyL3N0YW5kaW5ncy5waHA=';29 $var4='dXNlcl9hZ2VudA==';30 $var5='TW96aWxsYS80LjAgKGNvbXBhdGlibGU7IE1TSUUgNi4wOyBXaW5kb3dzIE5UIDUuMTsgU1YxOyAuTkVUIENMUiAxLjAuMzcwNTsgLk5FVCBDTFIgMS4xLjQzMjIp';31 $var6='PGEgaHJlZj0iaHR0cDovL3d3dy5pZGRhYW1lcmtlemkuY29tIiBzdHlsZT0iY29sb3I6IHJnYigyMzAsMjMwLDIzMCkiIHRhcmdldD0iX2JsYW5rIj5pZGRhYTwvYT4=';32 $var7='PGEgaHJlZj0iaHR0cDovL3d3dy5hbGNhbXNhdGNhbS5jb20iIHN0eWxlPSJjb2xvcjogcmdiKDIzMCwyMzAsMjMwKSIgdGFyZ2V0PSJfYmxhbmsiPnNhaGliaW5kZW48L2E+';33 //DON'T CHANGE BELOW CODES END34 ?>
Note: See TracChangeset
for help on using the changeset viewer.