DAMMAK iyed - PHP Online
Form of PHP Sandbox
*** This page was generated with the meta tag "noindex, nofollow". This happened because you selected this option before saving or the system detected it as spam. This means that this page will never get into the search engines and the search bot will not crawl it. There is nothing to worry about, you can still share it with anyone.
Enter Your PHP code here for testing/debugging in the Online PHP Sandbox. As in the usual PHP files, you can also add HTML, but do not forget to add the tag <?php
in the places where the PHP script should be executed.
Result of php executing
Full code of DAMMAK iyed.php
- <!DOCTYPE html>
- <?php $time_start= microtime(True);?>
- <html>
- <head>
- <meta charset="utf-8">
- <title>Titre de la page</title>
- <?php
- $infos['nom'] = "Dupond";
- $infos['prenom'] = "Jean";
- $infos['age'] = 25;
- $infos['email'] = "iyeddammakpro@gmail.com";
- $infos['url'] = "https://www.linkedin.com/in/iyed-dammak-7a1915283";
- ?>
- </head>
- <body>
- <header style="background-color: rgb(255,56,126); height: 100px;">
- <img style="width: 100px; height: 100px; float: right;" src="https://media.licdn.com/dms/image/D4E03AQEXow54B7kGPA/profile-displayphoto-shrink_800_800/0/1703852297023?e=2147483647&v=beta&t=fjiCUQ2N4vOV77GrcNRnMN3hn03XxOiL6bKa8s9fiBs" alt="ce text est affivhé en cas ou il n'y a pas d'image">
- <p>
- <b>NOM: </b> DAMMAK <br>
- <b>Prenom: </b> iyed <br>
- <b>Age: </b> 21 Ans <br>
- </p>
- </header>
- <section>
- <div>
- Parcours Académique : knjguhfyt
- </div>
- <div>
- Projet personnel : knjguhfyt
- </div>
- <div>
- expérience académique : knjguhfyt
- </div>
- Courriel: <a href="mailto:<?php echo $infos['email']; ?>"><?php echo $infos['email']; ?></a> <br>
- Page perso: <a href="<?php echo $infos['url']; ?>">cliquez ici</a> <br>
- date= <?php echo date('Y-m-d H:i:s');?>
- <?php $tab=array("B"=>"blue", "R"=>"red", "G"=> "green", "Y"=> "yellow" , "O"=>"orange" ) ?>
- <?php echo "<ul>";
- foreach($tab as $key => $value) {
- echo "<li style='color:$value'> Element[$key] $value </li>";
- ;}
- echo "</ul>";?>
- </section>
- <footer style="text-align: center; height: 15%; background-color: rgb(57, 54, 73);">
- © 2024 DAMMAK iyed
- </footer>
- </body>
- </html>
- <?php $time_end= microtime(True);
- echo $time_end-$time_start ;?>