function alphanumericAndSpace( $url )
{
return preg_replace('/[^a-zA-Z0-9\s]/', '', $url);
}
$url = $_SERVER['QUERY_STRING'];
$url = alphanumericAndSpace( $url );
$post = substr($url, 4, 12);
//echo $url . "
";
//echo $dog . "
";
//echo $post . "
";
$result = substr($post, 0, 4);
$result1 = substr($post, 4, 2);
$rat = "/home/aleta/public_html/pages/releases/" . $result . "/" . $result1 . "/" . $post . ".htm";
if (file_exists($rat))
{
//include $rat;
}
else
{
//$rat = file_get_contents("/home/aleta/public_html/pages/contributors/contributor_publish_location.php");
//include $rat;
}
//
Global Economic Intersection
//
//
//
if (file_exists($rat))
{
$mystring = file_get_contents($rat);
$more = explode("",$mystring);
$thumb = $more['0'];
$mystring = $more['1'];
$title = strip_tags($thumb);
$title = preg_replace( "/\r|\n/", "", $title );
echo "" . $title . "" . "\r\n";
$more = explode("",$mystring);
$thumb1 = $more['0'];
$mystring = $more['1'];
$more = explode("",$mystring);
$thumb2 = $more['0'];
$mystring = $more['1'];
$description = $thumb1 . $thumb2;
$description = strip_tags($description);
$description = preg_replace( "/\r|\n/", "", $description );
echo '' . "\r\n";
$mystring = file_get_contents($rat);
$more = explode('',$mystring);
$tags = $more['0'];
$tags = preg_replace( "/\r|\n/", "", $tags );
echo '' . "\r\n";
}
else
{
echo "error: bad file name
";
}
function isMobile() {
return preg_match("/(android|avantgo|blackberry|bolt|boost|cricket|docomo|fone|hiptop|mini|mobi|palm|phone|pie|tablet|up\.browser|up\.link|webos|wos)/i", $_SERVER["HTTP_USER_AGENT"]);
}
if(isMobile())
{
$mobile = "yes";
include("/home/aleta/public_html/pages/releases/release_mobile.php");
}
else
{
$mobile = "no";
include("/home/aleta/public_html/pages/releases/release_desktop.php");
}
?>