Carte - PHP Online

Form of PHP Sandbox

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.



Your result can be seen below.

Result of php executing





Full code of Carte.php

  1. <!doctype html>
  2. <html lang = "fr">
  3. <?php
  4.     $infos['nom'] = "Souguir";
  5.     $infos['prenom']="Khalil";
  6.     $infos['age'] = 21;
  7.     $infos['email']="[email protected]";
  8.     ?>
  9.  
  10. <head>
  11.     <meta charset="utf-8">
  12.     <title>Carte</title>
  13. </head>
  14. <body>
  15.     <header style ="height : 20%;background-color: rgb(200,59,110)">
  16.         <img  style="height : 120px;float:right" src="https://media.licdn.com/dms/image/D4D03AQGfb3vmQcwyXA/profile-displayphoto-shrink_200_200/0/1708978191450?e=1714608000&v=beta&t=wotsRd5tMXrKxwqQLYKB9htUVgUTfp5C6xtt2bOLU5k">
  17.         <h1><?php echo $infos['nom'].' '.$infos['prenom']; ?>
  18.         </h1> <br>
  19.         <h3>21 ans</h3> 
  20.     </header>
  21.     <section style="height : 70%;clear:both;font-family : sans-serif" ><br><strong><em>Adresses Utiles</em></strong><br>    
  22.     <p>Courriel : <a href="mailto:[email protected]"> [email protected] </a></p>
  23.     <p> <a href ="https://www.linkedin.com/in/khalilsouguir">Page Linkedin </a>/</p>
  24.     </section>
  25.  
  26.     <footer height = 10%>&copy 2023-2024 Souguir Khalil <br>
  27.     <?php echo"nous sommes le ". date('l \t\h\e jS'); ?>
  28.     </footer>
  29.  
  30. </body>
  31. </html>
  32.  
File Description
  • Carte
  • PHP Code
  • 28 Feb-2024
  • 1.11 Kb
You can Share it: