<?php

require 'Require.php';
include "Place_Header.php";
include "includables.php";
$user = $_SESSION['Logged_In_User'];
$encoder = new Encoder_Controller($user);
//make an encoder object
//get the id of the Sub_City
if ($_SERVER['REQUEST_METHOD'] == "GET") {
    if (isset($_GET['Sub_City_ID'])) {
        $Sub_City_ID = $_GET['Sub_City_ID'];
    }
}
$Single_Sub_City = $encoder->Get_Single_Sub_City($Sub_City_ID);
$Single_Sub_City = mysqli_fetch_array($Single_Sub_City, MYSQL_ASSOC);
$Sub_City_Name = $Single_Sub_City['Name'];
$Sub_City_Name_Amharic = $Single_Sub_City['Name_Amharic'];
?>



<div class=" col-sm-7 list_container margin_0">

	<div class="col-sm-12">

		<div class="panel panel-default">
			<div class="panel-body text-center">
				<h4>Delete Sub_City</h4>

			</div>