Header("Content-Type: text/html; charset=\"UTF-8\""); /** * This file will recieve info about a specific site and show the user a custom "portal page" */ $url= strip_tags($_GET['url']); $title = strip_tags($_GET['title']); $desc = strip_tags($_GET["desc"]); /* // only works for PHP5 $title= html_entity_decode($_GET['title'],ENT_COMPAT,'utf-8'); $desc= html_entity_decode($_GET['desc'],ENT_COMPAT,'utf-8'); */ $img = "http://open.thumbshots.org/image.pxf?url=$url"; ?>
|