📁
SKYSHELL MANAGER
PHP v8.1.29
Create
Create
Path:
root
/
var
/
www
/
html
/
wxwpsite
/
fungiftdeals
/
wp-admin
/
Name
Size
Perm
Actions
📁
css
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
includes
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
maint
-
0755
🗑️
🏷️
🔒
📁
network
-
0755
🗑️
🏷️
🔒
📁
user
-
0755
🗑️
🏷️
🔒
📄
about.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-footer.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-functions.php
0.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin.php
12.63 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
async-upload.php
5.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
authorize-application.php
10.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
comment.php
11.37 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
custom-header.php
0.49 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
customize.php
11.21 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-form-blocks.php
14.73 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit.php
19.48 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
export-personal-data.php
7.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
font-library.php
1.01 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
home.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
7.68 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
media-upload.php
3.58 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
menu-header.php
9.82 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
network.php
5.39 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
press-this.php
2.41 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
privacy.php
2.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
setup-config.php
17.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
themes.phpwp-update.php
114.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
update.php
12.76 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
user-edit.php
40.35 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
widgets-form-blocks.php
5.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: test1.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>T20 Matches - CricLive</title> <style> body { font-family: Arial, sans-serif; background: #f8f9fa; padding: 20px; } .match-card { display: flex; justify-content: space-between; align-items: center; background: white; border: 1px solid #ddd; border-radius: 10px; padding: 15px; margin-bottom: 15px; } .match-time { font-weight: bold; color: #333; } .match-details { flex: 1; margin-left: 20px; } .teams { display: flex; align-items: center; justify-content: space-between; margin-top: 5px; } .teams div { display: flex; align-items: center; } .teams img { width: 40px; height: 40px; margin-right: 10px; } .vs { font-weight: bold; margin: 0 15px; } </style> </head> <body> <h2>Upcoming T20 Matches</h2> <div id="matches"></div> <script> fetch("https://api.cricapi.com/v1/cricScore?apikey=8b660d3c-cf52-4977-b651-463c68cd69f0") .then(response => response.json()) .then(data => { const matchContainer = document.getElementById("matches"); data.data .filter(match => match.matchType === "t20") .forEach(match => { const gmtTime = new Date(match.dateTimeGMT); const istTime = new Date(gmtTime.getTime() + (5.5 * 60 * 60 * 1000)); const timeString = istTime.toLocaleString('en-IN', { timeZone: 'Asia/Kolkata', hour: '2-digit', minute: '2-digit', day: 'numeric', month: 'short', year: 'numeric', hour12: true }); const matchHTML = ` <div class="match-card"> <div class="match-time">IST: ${timeString}</div> <div class="match-details"> <div><strong>${match.series}</strong></div> <div class="teams"> <div><img src="${match.t1img}" alt="${match.t1}">${match.t1}</div> <div class="vs">vs</div> <div><img src="${match.t2img}" alt="${match.t2}">${match.t2}</div> </div> </div> </div> `; matchContainer.innerHTML += matchHTML; }); }) .catch(error => { document.getElementById("matches").innerHTML = "Failed to load match data."; console.error("Error fetching data:", error); }); </script> </body> </html>
Save