game_data_id)){ if(isset($_POST['submitUpload'])){ //Get the data from the user form $gameFile = $_FILES['gameFile']; $desc = $_POST['description']; $title = $_POST['gameTitle']; $thumbnail = $_FILES['thumbnailFile']; $isWebBased = isset( $_POST['isWebBased']); $gameFileName = $_FILES['gameFile']['name'];//Game name $gameFileTmp = $_FILES['gameFile']['tmp_name'];//Tmp location of the file $gameFileError = $_FILES['gameFile']['error'];//File error $thumbnailFileName = $_FILES['thumbnailFile']['name'];//Game name $thumbnailFileTmp = $_FILES['thumbnailFile']['tmp_name'];//Tmp location of the file $thumbnailFileError =$_FILES['thumbnailFile']['error'];//File error if($gameFileError === 0){ $gameData = new GameData(); $gameData->game_name = $title; $gameData->game_link = ZipFileHandler($gameFileName,$gameFileTmp); $gameData->description = $desc; if(isset($thumbnail) && $thumbnailFileError === 0){ $gameData->img = imagesFileHandler($thumbnailFileName,$thumbnailFileTmp); } $gameData->is_web_Based = $isWebBased; $gameData->save(); $group->gameData()->associate($gameData); $group->save(); } } }else{ header("location: ../../../Frontend/group.php?error=TooManyUploads"); } }else{ header("location: ../../../Main.php?error=NoLogin"); }