Hvis en fil ikke blev uploadet, vil $_FILES-arrayet være tomt. Specifikt hvis filen image
blev ikke uploadet, $_FILES['image']
vil ikke blive indstillet.
Så
$file = $_FILES['image']['tmp_name']; //Error comes from here(here is the prob!)
skal være:
if(empty($_FILES) || !isset($_FILES['image']))
opdatering
Du vil også have problemer, fordi du mangler enctype
attribut på din formular:
<form class="form-horizontal" action="Ressave.php" method="POST" autocomplete="on" enctype="multipart/form-data">