Esecizi in php su moduli

This commit is contained in:
2014-10-26 12:40:01 +01:00
parent c318b09580
commit 3924e6bf32
7 changed files with 410 additions and 2 deletions

47
php_5.php Normal file
View File

@@ -0,0 +1,47 @@
<?php
require_once ('functions.php');
include('header.html');
///////////////////////////
echo<<<_css
<style>
</style>
_css;
echo "\n";
///////////////////////////
echo<<<_html
<form method="get" action="stampa.php">
Nome: <input type="text" required autofocus name="name" ><br>
Mail: <input type="email" required name ="mail" ><br>
Password: <input type="password" required name ="password_1" ><br>
Verifica Password: <input type="password" required name ="password_2" ><br>
<input type="submit" value="Invia">
</form>
_html;
include ('footer.html');
?>