i am very new with html/css too with php and my English is very poor.. so , my problem ... , i have this Codec from here . I have Three File , the First is index.php
<html> 
<head> 
<link rel="stylesheet" href="style.css" type="text/css"> 
</head> 
<body> 
<form action="" method="POST"> 
<label>Name: 
<input type="text" name="Name" class="Input" style="width: 225px" required> 
</label> 
<br><br> 
<label> Comment: <br> 
<textarea name="Comment" class="Input" style="width: 300px" required> </textarea> 
</label> 
<br><br> 
<input type="submit" name="Submit" value="Submit Comment" class="Submit"> 
</form> 
</body> 
</html> 
<?php 
    if($_POST['Submit']){  
        $Name = $_POST['Name']; 
        $Comment = $_POST['Comment']; 
        #Get old comments 
        $old = fopen("comments.txt", "r+"); 
        $old_comments = fread($old, 1024); 
        #Delete everything, write down new and old comments 
        $write = fopen("comments.txt", "w+"); 
        $string = "<b>".$Name."</b><br>".$Comment."<br>\n".$old_comments; 
        fwrite($write, $string); 
        fclose($write); 
        fclose($old); 
    } 
        #Read comments 
        $read = fopen("comments.txt", "r+"); 
        echo "<br><br>Comments<hr>".fread($read, 1024); 
        fclose($read); 
?>
Than a style.css File and a empty with the name comments.txt . This Files i have to a Computer (computer A) , with apache , start it with , /etc/init.d/apache2 restart .In another Computer (computer B) i write to Browser, 192.345.345.100/index.php , in Name i write my name and in Comment , a comment.. ,what come nothing.... .Image from mine Browser enter image description here , can please anyone help me , Thanks !
The image from Computer B , in Browser write  http://192.345.345.100/info.php  ,info.php which i have to build  with <?php  phpinfo();  ?> .
See stacktrace:
 
 
