I downloaded

i got this "error" on php page:
", file_get_contents($path))); ?>
whats wrong?
GetLog.php
1
2
3
4
2
3
4
<? 	$path = "C:/2d/chatlog.txt"; 	print(str_replace("~n", "<br>", file_get_contents($path))); ?>
Chat.php
Spoiler 

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
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
<html> <head> 	<title>STRIKE UI - Chat</title> 	<meta charset="UTF-8"> 	<link rel="stylesheet" href="cp_menu/style.css" type="text/css" /><style type="text/css">._css3m{display:none}</style> 	<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> 	<script type="text/javascript"> 	function update() 		{ 			$.post("getLog.php", {}, function(result) { 				$(".log").html(result); 				}); 				t = setTimeout("update()", 1000); 			} 				 			$(document).ready(function(){ 			update(); 		}); 	</script> </head> <body style="background-color: #9E9E9E; color: black">> <ul id="css3menu1" class="topmenu"> 	<li class="topfirst"><a href="index.html" style="height:20px;line-height:20px;"><img src="cp_menu/home2.png" alt=""/>Home</a></li> 	<li class="topmenu"><a href="#" style="height:20px;line-height:20px;"><span><img src="cp_menu/user3.png" alt=""/>User Managment</span></a> 	<li class="topmenu"><a href="#" style="height:20px;line-height:20px;"><img src="cp_menu/tree.png" alt=""/>Servers</a></li> 	<li class="topmenu"><a href="#" style="height:20px;line-height:20px;"><img src="cp_menu/console.png" alt=""/>RCON</a></li> 	<ul> 		<li><a href="#"><img src="cp_menu/checkmark.png" alt=""/>Manage Users</a></li> 		<li><a href="#"><img src="cp_menu/plus.png" alt=""/>Add Users</a></li> 	</ul></li> 	<li class="toplast"><a href="#" style="height:20px;line-height:20px;"><span><img src="cp_menu/shield.png" alt=""/>Security</span></a> 	<ul> 		<li><a href="#"><img src="cp_menu/google.png" alt=""/>General</a></li> 		<li><a href="#"><img src="cp_menu/wrench1.png" alt=""/>Advanced</a></li> 		<li><a href="#"><img src="cp_menu/close.png" alt=""/>BANs</a></li> 	</ul></li> 	<li class="topmenu"><a href="#" style="height:20px;line-height:20px;"><span><img src="cp_menu/hammer2.png" alt=""/>Tools</span></a> 	<ul> 		<li><a href="#"><img src="cp_menu/camera.png" alt=""/>Streaming(DEV)</a></li> 		<li><a href="chat.php"><img src="cp_menu/bubble.png" alt=""/>Chat</a></li> 		<li><a href="#"><img src="cp_menu/paragraph-left2.png" alt=""/>LOGs</a></li> 		<li><a href="#"><img src="cp_menu/pencil.png" alt=""/>Scripter</a></li> 		<li><a href="#"><img src="cp_menu/settings.png" alt=""/>Options</a></li> 		<li><a href="#"><img src="cp_menu/user2.png" alt=""/>Logout</a></li> 	</ul></li> </ul> <br> <br> <div class="log">		 </div> <footer align="center"><b>All Rights Reserved | Copyright © STRIKE-UI, 2014</b></footer> </body> </html>