Added http response code
This commit is contained in:
@@ -25,23 +25,19 @@ if (isLogin()) {
|
||||
|
||||
//Try to save it
|
||||
if(!$keyword->save()){
|
||||
header("location: ../../../Frontend/index.html?error=FailedToSave");
|
||||
exit();
|
||||
http_response_code(500);
|
||||
}else{
|
||||
header("location: ../../../Frontend/index.html?success=KeyWordSaved");
|
||||
exit();
|
||||
http_response_code(201);
|
||||
}
|
||||
}else{
|
||||
header("location: ../../../Frontend/index.html?error=YouCantSubmitAnyMoreKeyWords");
|
||||
exit();
|
||||
echo "limited upload reached";
|
||||
http_response_code(400);
|
||||
}
|
||||
|
||||
}else{
|
||||
header("location: ../../../Frontend/index.html?error=CouldNotSubmitKeyWord");
|
||||
exit();
|
||||
http_response_code(400);
|
||||
}
|
||||
}else{
|
||||
header("location: ../../../Frontend/index.html?error=NotLogin");
|
||||
exit();
|
||||
http_response_code(401);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user