12 lines
277 B
PHP
12 lines
277 B
PHP
|
<html>
|
||
|
<?php
|
||
|
if (isset($_POST['mail'])){
|
||
|
$mail = $_POST['mail'];
|
||
|
print("<p>The mail ".$mail." has been registered in our database.</p>");
|
||
|
}
|
||
|
else{
|
||
|
echo "<p>The mail ".$_GET['mail']." has been registered in our database.</p>";
|
||
|
}
|
||
|
?>
|
||
|
</html>
|