<?php
  include("db.php");  

	$id =$_REQUEST['ClasherID'];
	
	
	// sending query
	mysql_query("DELETE FROM clasher WHERE ClasherID = '$id'")
	or die(mysql_error());  	
	
	header("Location: clasher.php");
?>