Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public function addProjectController($projectName) {
  2. $project = new Integration();
  3.  
  4. $affectedLines = addProject($projectName);
  5.  
  6.  
  7. if ($affectedLines === false) {
  8. throw new Exception('Impossible d'ajouter le projet ! ');
  9. }
  10. else
  11. {
  12. header('location : index.php');
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement