You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
293 B
8 lines
293 B
<?php
|
|
session_start();
|
|
$idparte =$_SESSION['idpartie'];
|
|
echo "<h2 id='ids'>Identifiant partie : <strong>$idparte</strong> <button onclick='myFunction()' type='button' class='btn btn-dark'>Copier Id</button></h2>" ;
|
|
echo "<input type='text' class='myInput' value='$idparte' id='myInput'>";
|
|
?>
|
|
|