12 Avril
This commit is contained in:
parent
22696c5ccf
commit
4ecb2b62ca
7
BACKEND/PHP/bonjour.php
Normal file
7
BACKEND/PHP/bonjour.php
Normal file
@ -0,0 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
<?php echo "<h1>hello world</h1>";
|
||||
?>
|
||||
</body>
|
||||
</html>
|
17
BACKEND/PHP/compte.php
Normal file
17
BACKEND/PHP/compte.php
Normal 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
9
BACKEND/PHP/tableau.php
Normal file
@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
<?php function Afficher($array){
|
||||
echo "<table>"
|
||||
}
|
||||
?>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user