-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfriendly.php
76 lines (69 loc) · 2 KB
/
friendly.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
/* * *********************************************
*
* Project: phpTransformer.com .
* File Location : .
* File Name: .
* Date Created: 00-00-2007.
* Last Modified: 00-00-2007.
* Descriptions: .
* Changes: .
* TODO: .
* Author: Mohsen Mousawi [email protected] .
*
* ********************************************* */
?>
<?php
//MAKE PAGES ZIPPED FOR BANDWIDTH RANSFER
if (strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') == true) {
ini_set('zlib.output_compression_level', 6);
ob_start('ob_gzhandler');
}//end if
// END GZIP
if (function_exists('set_time_limit')) {
@set_time_limit(0);
}
$project = "PhpTransformer";
include_once('includes/Functions.php');
include_once("includes/session.php");
if (isset($_GET['print'])) {
$PrintCode = '<script langauge="javascript">print();</script>';
} else {
$PrintCode = "";
}//end if
if (isset($_SERVER['HTTP_REFERER'])) {
$Ref = $_SERVER['HTTP_REFERER'];
} else {
$Ref = "";
}//end if
$Host = $_SERVER['HTTP_HOST'];
if (strstr($Ref, $Host)) {
if (!strstr($Ref, 'Lang')) {
$Ref .='&Lang=' . $_SESSION['Lang'];
}
$AllPage = GetPageContent($Ref);
$BeginDir = stristr($AllPage, '<html');
;
$EndDir = strpos($BeginDir, '<head>');
$dirHtml = substr($BeginDir, 0, $EndDir);
$BeginTitle = stristr($AllPage, '<title>');
;
$EndTitle = strpos($BeginTitle, '</title>');
$PageTitle = substr($BeginTitle, 0, $EndTitle);
$BeginCut = stristr($AllPage, '<!-- Begin of ProgCont TD -->');
$EndCut = strpos($BeginCut, '<!-- End of ProgCont TD -->');
$FriendlyCode = substr($BeginCut, 0, $EndCut);
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
' . $dirHtml . '
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
' . $PageTitle . '</title>
</head>
<body>'
. $PrintCode . $FriendlyCode . '
</body>
</html>';
} else {
echo "";
}//end if
?>