C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\zomplog\comments_put.php


1
<?php/* Written by Gerben Schmidt, http://scripts.zomp.nl */include('admin/config.php');include("skins/$skin/header.php");include("language/$language");mysql_query("INSERT INTO $table_comments (entry_id,name,comment,date) VALUES ('$_GET[id]','$_POST[name]','$_POST[comment]','$date')") or die (mysql_error());echo "<table width='600' border='0' cellspacing='0' class='admin'>";echo "<tr>";echo "<td>&nbsp;</td>";echo "</tr>";echo "<tr>";echo "<td class='zomplog'>$data_added $back <a href='$_SERVER[HTTP_REFERER]'>$prevpage</a></td>";echo "</tr>";echo "<tr>";echo "<td>&nbsp;</td>";echo "</tr>";echo "</table>";include("skins/$skin/footer.php");?>