(juste en dessous des badges sympatiques à placer)
Une petite description du projet
Entrez ici les instructions pour bien débuter avec votre projet...
| // ==UserScript== | |
| // @name Ajouter film à Google Calendar sur SensCritique | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Ajoute un bouton pour ajouter un film à Google Calendar depuis SensCritique | |
| // @author Xylis | |
| // @match https://www.senscritique.com/films/sorties-cinema/*/semaine/* | |
| // @match https://www.senscritique.com/films/sorties-cinema/*/* | |
| // @match https://www.senscritique.com/films/sorties-cinema/* | |
| // @match https://www.senscritique.com/films/cette-semaine |
| // ==UserScript== | |
| // @name Ajouter film à Google Calendar sur TheMovieDB | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Ajoute un bouton pour ajouter un film à Google Calendar depuis TheMovieDB | |
| // @author Xylis | |
| // @match https://www.themoviedb.org/movie/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=themoviedb.org | |
| // @grant none | |
| // ==/UserScript== |
| <?php | |
| $event = $_GET['id']; | |
| $query = $bdd->prepare('SELECT * FROM questions WHERE id_event = :event'); | |
| $query->execute(compact('event')); | |
| $questions = $query->fetchAll(); | |
| ?> | |
| <form action="traitement.php" method="post"> |
| https://stackoverflow.com/questions/37912937/how-to-send-secure-ajax-requests-with-php-and-jquery | |
| http://www.cloudconnected.fr/2007/10/10/les-fetch-modes-de-pdo/ |
| <?php | |
| // testsUnitaires/src/User.php | |
| namespace TestsUnitaires; | |
| /** | |
| * Classe Utilisateur | |
| */ | |
| class User |