Premier commit

This commit is contained in:
Logshiro
2025-09-29 13:11:49 +02:00
commit 59d0786bc3
4 changed files with 90 additions and 0 deletions

13
scripte2.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
$a = "coincoin";
// n'apparei pas lors de l'appel
function traitementPrive(){
global $a; //indispensable pour accèder au variables globales
echo "<br><br>Dans script 2<br>";
echo "Super privé, super dangereux...<br>";
echo $a;
}