Advertisement
nicolas-chuet

insertion

Apr 7th, 2020
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1.  
  2. <?php
  3. include ('C:\Formation\givexpert\sitestest\modal\Domain.php');
  4. include ('C:\Formation\givexpert\sitestest\modal\Modal.php');
  5. include ('C:\Formation\givexpert\sitestest\modal\ModalManager.php');
  6.  
  7. $modal = new Modal();
  8. foreach ($_POST['url'] as $url)
  9. {
  10.  
  11. $domain = new Domain();
  12. $domain->setUrl($url);
  13. $modal->addUrl($domain);
  14. }
  15. $modal->setText($_POST['text']);
  16. $modal->setTitle($_POST['title']);
  17.  
  18. $db = new ModalManager();
  19. $db->insertMysqli($modal);
  20.  
  21. echo "Modal inserΓ© dans la base";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement