Ajout devoirs,exercices et séries 1ère année secondaires
[insert_php]
session_start();
if (isset($_GET[‘section’])&& isset($_GET[‘type’])&& isset($_GET[‘matiere’])) // On a le nom et le prénom
{
$_SESSION[‘section’]=$_GET[‘section’];
$_SESSION[‘type’]=$_GET[‘type’];
$_SESSION[‘matiere’]=$_GET[‘matiere’];
}
[/insert_php]