예제 #1
0
 $random_no = (string) rand(0, 10000);
 $project_id = "P" . $random_no;
 $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'];
 }
 $projectMgr->addProject($project_id, $project_name, $type, $year, $country, $size, $location, $date, $description);
 $count = 0;
 $noOfPhoto = 20;
 for ($x = 1; $x <= $noOfPhoto; $x++) {
     $hdId = "hd" . strval($x) . "_input";
     $thumbnailId = "thumbnail" . strval($x) . "_input";
     $hdPicname = $_FILES[$hdId]['name'];
     if ($hdPicname != "") {
         $count++;
         $type = strstr($hdPicname, '.');
         if ($type != ".gif" && $type != ".jpg" && $type != ".png") {
             echo 'invalid image type';
             exit;
         }
         $rand = rand(1000, 9999);
         $pics = date("YmdHis") . $rand . "hd" . $type;