In here it shows the Title is undefined.Title comes with query.Id comeup with URL.then i fetch the data using given id.
Code
 <?php
    $id = isset($_REQUEST['Id']) ? $id = $_REQUEST['Id'] : '';
    if ($id != 0) {
        include('config.php');
        $sql = "SELECT Id,Title,description,Image,Category from News WHERE Id='" . $id . "'";
        $query = mysql_query($sql);
        $row = mysql_fetch_array($query);
       ?>
        <form action="edit.php" method="POST" enctype="multipart/form-data">
            <div class="OuterWrapper" background-color:white; >
                 <div class="row" id="wrapper" >
                    <div class="col-xs-3" style="margin-top:5%">
                        Title
                    </div>
                    <div class="col-xs-3" style="margin-top:5%">
                        <input type="hidden" name="Title" class="form-control" value="<?php echo $row[0] ?>" >
                        <input type="text" name="Title" class="form-control" value="<?php echo $row[1] ?>" >
                    </div>
                            //SOME HTML CODE HERE
                        </form>
                       <?php 
                        $Title = mysql_real_escape_string($_POST["Title"]);  <-- Undefined Index 'Title'
                        //$description_save = $_POST['description'];
                        //$Category  = $_POST["select_category"];
                        mysql_query("UPDATE News SET Title ='$Title', Description ='$description_save' WHERE Id = '$id'") or die(mysql_error());
                        //echo "Succesfully Updated!";
                        //header("Location: list.php");
                    }
                    ?>
                    </body>
                    </html>
 
     
    