Exemple #1
0
<?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 City
if (isset($_GET['City_ID'])) {
    $City_ID = $_GET['City_ID'];
}
$Single_City = $encoder->Get_Single_City($City_ID);
$Single_City = mysqli_fetch_array($Single_City, MYSQL_ASSOC);
$City_Name = $Single_City['Name'];
$City_Name_Amharic = $Single_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>Edit City</h4>

			</div>
		</div>

		<!--	    start of feedback place-->
		<?php