1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?php include_once(__DIR__.'/app/app.php'); $Planet->addPerson( new PlanetFeed( '', htmlspecialchars_decode($_GET['url'], ENT_QUOTES), '' ) ); //Load feeds $Planet->download(1); header("Content-type: image/png"); readfile(__DIR__."/custom/img/feed.png"); die();