1
0
Fork 0
isopod.cool/stuff/spotifycdnsilly/ip.php
2024-09-30 13:29:41 -06:00

21 lines
621 B
PHP
Executable file

<?php
$addr = $_SERVER['REMOTE_ADDR'];
$url = "https://seed-mix-image.spotifycdn.com/v6/img/desc/$addr/sv/large";
$img = "<img src='$url' alt='Spotify: $addr'>";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php echo($addr); ?></title>
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
<?php echo("<meta property='og:image' content='$url'>"); ?>
</head>
<body style="display: flex; align-items: center; justify-content: center;">
<?php echo($img); ?>
</body>
</html>