1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <?php
$bdd = new PDO('mysql:host=localhost;dbname=test', 'root', '');
?>
<?php
$sql = $bdd->query( "SELECT choses FROM machins ");
$rep = $sql -> fetchAll() ;
foreach( $rep as $result ){
echo
'
<strong style="color:red;text-align:center;margin-left:100;" id="texte">' .$result["choses"]. '</strong>
<button type="button" id="spr" onclick="test(\'' . $result["choses"] . '\',this,xc)" > tester </button>
<label id="xc" style="display:none" > yes </label>
';
}
?>
<script >
function test(param,spr,xc){
spr.style.display = "none" ;
xc.style.display = "" ;
}
</script> |