MINI Sh3ll
<?php
include('config/mysql_crud.php');
$position = $_POST['position'];
//$gallery_image_name = $_POST['gallery_image_name'];
echo '<pre>';
print_r($_POST);
echo '</pre>';
$db = new Database();
$db->connect();
$db->update('our_hosts',array('position'=> $position, 'host_name'=> htmlentities($_POST['host_name']), 'designation'=> htmlentities($_POST['designation']), 'description'=> htmlentities($_POST['description']))," id='".$_POST['id']."' ");
$rows = $db->getResult();
print_r($db->getResult());
?>
OHA YOOOO