Hi there I am using this code
if ($action=="delete") {
$query = mysql_query("DELETE FROM news WHERE newsid=$newsid") or die(mysql_error());
if ($query) {
echo "News Deleted";
echo "<meta http-equiv=\"Refresh\" content=\"3\"; URL=\"editnews.php?\">";
}
}
But instead pf redirecting it just redirects the same page over and over.. I dont get why its going that.
thanks
- me