You have to create HTML form to submit the data event_id,category,title etc. Now create bellow php file with necessary alterations with your database name,password etc
$event_id=$_POST['event_id'];
$category=$_POST['category'];
$title=$_POST['title'];
$data=$_POST['data'];
$datetime=$_POST['datetime'];
$location=$_POST['location'];
$description=$_POST['description'];
$tags=$_POST['tags'];
$con = mysql_connect("localhost","root","");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("your_database", $con);
mysql_query("UPDATE Event SET id='$event_id' , category_id= '$category' , title='$title' , image='$data' , datetime='$datetime' , location='$location' , description='$description' , tags='$tags' WHERE id='$event_id' AND category_id= '$category'");
mysql_close($con);
echo "sucessfully updated";
?>