#!/usr/local/bin/perl
print "Content-type:text/html\n\n"; 

## Start html tag ##

print "
<html><head><title> Recommend Site ; ;) {
} </title></head>
<body bgcolor=#ffffcc><table width=30%><td><!--#echo banner=''--></td></table>
กรุณากรอกข้อมูลเกี่ยวกับ Webpage  ที่ท่านอยากจะแนะนำ

<form method=POST action='addact.pl'>
<table border=0>
<tr><td>คำอธิบาย:</td><td> <input type=text name='title' size=80></td></tr>
<tr><td>URL :</td><td> <input type=text name='url' value='http://' size=55>
<input type=submit value='Add'> * <input type=reset></td></tr></table>
</form>
"
;

## End html tag ##

$filename = "add_data.txt";

open (FILE,$filename);
@line = <FILE>;
close(FILE);
@line = reverse(@line);
print @line;
print "</body></html>";

## end program ##
