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

  1. <?php
  2. //azonosítás <div id="nav"><div>---index.php
  3.  
  4. echo <<<EOT
  5. include 'fg.php';
  6. htmlHead();
  7.  
  8. <form action="auth.php"method="post">
  9. <filedset>
  10.     <legend>Bejelentkezés</legend>
  11.     
  12.     <label>Fekhasználónév</label>
  13.     <input type="text" name="user">
  14.     <br>
  15.     <label>Jelszó</label>
  16.     <input type="password" name="pass">
  17.     <br>
  18.     <button type="submit" >Belépés</button>
  19.     
  20.     
  21.  
  22. </filedset>
  23. </form>
  24.  
  25.  
  26. htmlFoot();
  27.  
  28.  
  29. EOT;
  30.  
File Description
  • login.php
  • PHP Code
  • 07 Apr-2020
  • 443 Bytes
You can Share it: