mirror of
				https://github.com/mikaela/mikaela.github.io/
				synced 2025-11-04 08:37:23 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			224 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			224 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
 | 
						|
header("Content-Type: text/html; charset=utf-8");
 | 
						|
 | 
						|
$IP = $_SERVER['REMOTE_ADDR'];
 | 
						|
 | 
						|
echo '<!DOCTYPE html>';
 | 
						|
echo '<head>';
 | 
						|
echo '<meta charset="UTF-8" />';
 | 
						|
echo "<title>$IP</title>";
 | 
						|
echo '</head>';
 | 
						|
echo '</html>';
 | 
						|
?>
 |