Advertisement
albita123

array_$GET

Jan 10th, 2022
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.45 KB | None | 0 0
  1. <!-- Codice di Gjyli Iljas -->
  2. <form action="method-get.php" method="GET">
  3.   <label for="nome">Nome</label><br>
  4.   <input type="text" id="nome" name="nome"><br>
  5.   <label for="cognome">Cognome:</label><br>
  6.   <input type="text" id="cognome" name="cognome"><br><br>
  7.   <input type="submit" value="Invio">
  8. </form>
  9.  
  10. <!-- Codice PHP
  11. // Codice di Gjyli Iljas
  12. $nome = $_GET['nome'];
  13. $cognome = $_GET['cognome'];
  14. echo $nome;
  15. echo '<br>';
  16. echo $cognome;
  17. -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement