cyrine.php - 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 cyrine.php.php

  1.  
  2. <html>
  3. <head>
  4. <title>Validation</title>
  5. </head>
  6. <body>
  7.  
  8. <?php
  9. echo "<table border='1'>";
  10. echo "<tr colspan='2'>";
  11. echo "<th> Confirmation de vos coordonnees</th>";
  12. echo "</tr>"; 
  13. echo "<tr>";
  14. echo "<td> nom:</td>";
  15.  
  16. if (isset($_GET['nom']))
  17.  {
  18.  if (!empty($_GET['nom']))
  19.  { echo "<td>".
  20. $_GET['nom']."</td>";
  21.  }
  22. }
  23. echo "</tr>";
  24.  
  25.      
  26.     ?>
  27.         </body>
  28.         </html>
  29.  
File Description
  • cyrine.php
  • PHP Code
  • 21 Mar-2021
  • 361 Bytes
You can Share it: