I basically implement some more to the web server to create an HTML file that will report the client's whom is requesting file from the web server IP address, and other information. However, I currently still trying to figure out on how to insert an ASCII text file after reading it from the HTML on a certain line. So for example this is what I got for the HTML:
Code:
<html>
<head>
<title>TEST</title>
</head>
<body>
<table border="1">
</table>
</body>
</html>
I want to insert a line right after <table border="1">
I tried by reading it line by line and print the line once it founds <table border="1"> but didn't work, so I guess I have to try different things, or get different solution for this problem..

anybody have ideas?
