示例#1
0
 $edit_id = addslashes(filter_input(INPUT_POST, 'edit_id'));
 $project_name = filter_input(INPUT_POST, 'name');
 $type = $_POST['type'];
 $year = filter_input(INPUT_POST, 'year');
 $country = filter_input(INPUT_POST, 'country');
 $location = filter_input(INPUT_POST, 'location');
 $size = filter_input(INPUT_POST, 'size');
 $completion_date = filter_input(INPUT_POST, 'completion_date');
 $date = new DateTime($completion_date);
 $date = $date->format('Y-m-d H:i:s');
 $description = "";
 if (!empty($_POST['description'])) {
     $description = $_POST['description'];
 }
 //UPDATE DB PROJECT TABLE
 $projectMgr->updateProject($edit_id, $project_name, $type, $year, $country, $location, $size, $date, $description);
 //UPDATE DISPLAY PIC
 $displayPic = $_FILES["display"]['name'];
 if ($displayPic != "") {
     $type = strstr($displayPic, '.');
     if ($type != ".gif" && $type != ".jpg" && $type != ".png") {
         echo 'invalid image type';
         exit;
     }
     $rand = rand(1000, 9999);
     $pics = date("YmdHis") . $rand . "display" . $type;
     if (!file_exists("public_html/img/projectImg/" . $edit_id)) {
         mkdir("public_html/img/projectImg/" . $edit_id, 0777, true);
     }
     $pic_path = "public_html/img/projectImg/" . $edit_id . "/" . $pics;
     move_uploaded_file($_FILES["display"]['tmp_name'], $pic_path);