-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patht.php
33 lines (29 loc) · 1.24 KB
/
t.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
<?php
/* ========================================================================
*
* @license This source file is subject to version 3.01 of the PHP license,
* that is available at http://www.php.net/license/3_01.txt
* If you did not receive a copy of the PHP license and are unable
* to obtain it through the world-wide-web, please send a note to
* [email protected] so we can mail you a copy immediately.
*
* @category Application of MyNETS
* @project OpenPNE UsagiProject 2006-2007
* @package MyNETS
* @author UsagiProject <[email protected]>
* @copyright 2006-2007 UsagiProject <author member ad http://usagi.mynets.jp/member.html>
* @version MyNETS,v 1.0.1
* @since File available since Release 1.0.1 Nighty
* @chengelog [2007/04/14] Ver1.0.1Nighty package
* ========================================================================
*/
$url = $_SERVER["QUERY_STRING"];
header('Content-Type: text/html; charset=Shift_JIS');
$html = "<html>\n"
."<head>\n"
."<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Shift_JIS\">"
."</head>\n"
."<body><br><br>ココから先はSNS外となります。<br><br><a href=\"".$url."\">".$url."</a>\n"
."</body></html>";
print($html);
?>