code:
<html>
<head>
<style type="text/css">
span.info{
text-align:center;
font-family:Verdana;
font-size:2;
}
</style>
<title>Upload</title>
</head>
<body>
<?php
include('config.php');
$user = $_GET["name"];
$message = $_GET["message"];
print("<b>Thank You!</b><br />Your information has been added! You can see it by <a href=savedinfo.php>Clicking Here</a>");
$out = fopen("savedinfo.php", "a");
if (!$out) {
print("Could not append to file");
exit;
}
fwrite($out,"<span class='info'><a href='".$user."' target='_blank'><img src='".$user."' width='300' height='200' style='border-color:#000000' border=1></a><BR>$message<BR><BR></span>".file_get_contents("savedinfo.php"));
fclose($out);
?>
</body>
</html>
will add the new entry on top of the new ones?