Thats Becuase Your Refreshing The Page That Inserts The Row.
You Should Have It Say:
<?php
$var = mysql_query("SELECT * FROM `table` WHERE `row`='$inputbox'");
$count = mysql_num_rows($var);
if($count >= 1)
{
echo "";
}
ELSE
{
mysql_query("INSERT INTO `table` (`row`) VALUES ('$inputbox')");
}
?>
Basically, If The News Item Already Exists, Do Nothing, But, If It Doesnt Exist, Then Insert It.
This Will Protect Your Refresh Problem
Although, Its Double Entering, Because Your Refreshing The INSERT Query.