This commit is contained in:
Adrian POURCHOT 2023-04-12 11:24:21 +02:00
parent 22696c5ccf
commit 4ecb2b62ca
3 changed files with 33 additions and 0 deletions

7
BACKEND/PHP/bonjour.php Normal file
View File

@ -0,0 +1,7 @@
<!DOCTYPE html>
<html>
<body>
<?php echo "<h1>hello world</h1>";
?>
</body>
</html>

17
BACKEND/PHP/compte.php Normal file
View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<body>
<?php echo "<p>";
for($i=1;$i<51;$i++){
if ($i%10==0){
echo "</p><p>";
}
if($i%2==0){
echo "<b>$i </b>";
} else{
echo "<i>$i </i>";
}
}echo "</p>";
?>
</body>
</html>

9
BACKEND/PHP/tableau.php Normal file
View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<body>
<?php function Afficher($array){
echo "<table>"
}
?>
</body>
</html>