Formulário de Cadastro HTML + PHP
<html>
<head>
<title>Formulário de Cadastro</title>
</head>
<body>
<form action="dados.php" method="post" name="form" onSubmit="return enviardados()">
<table>
<center>
<table>
<tr>
<td colspan=2><h2><center><font color="red"><b>Cadastro</b></font></center></h3></td>
</tr>
<tr>
<td>Nome: </td>
<td><input type="text" name="nome" value=""></td>
</tr>
<tr>
<td>Endereço: </td>
<td><input type="text" name="end" value=""></td>
</tr>
<tr>
<td>Cidade: </td>
<td><input type="text" name="cidade" value=""></td>
</tr>
<tr>
<td>UF: </td>
<td><input type="text" name="uf" value=""></td>
</tr>
<tr>
<td>Cep: </td>
<td><input type="text" name="cep" value=""></td>
</tr>
<tr>
<td>Telefone:</td>
<td>
<input type="text" name="fone" value="" width=200>
</td>
</tr>
<tr>
<td>CPF: </td>
<td><input type="text" name="cpf" value=""></td>
</tr>
<tr>
<td>RG: </td>
<td><input type="text" name="rg" value=""></td>
</tr>
<tr>
<td>Data de Nascimento</td>
<td>
<!-- Drop Down Dia -->
<select name = "dia">
<?php
$dia=1;
while($dia<=31)
{
?>
<option value= "<?php echo $dia?>"> <?php echo $dia?> </option>
<?php $dia++;
}
?>
</select>
<!-- Drop Down Mês -->
<select name = "mes">
<?php
$mes=1;
while($mes<=12)
{
?>
<option value= "<?php echo $mes?>"> <?php echo $mes?> </option>
<?php $mes++;
}
?>
</select>
<!-- Drop Down ano -->
<select name = "ano">
<?php
$ano=2012;
while($ano>=1900)
{
?>
<option value= "<?php echo $ano?>"> <?php echo $ano?> </option>
<?php $ano--;
}
?>
</select>
</td>
</tr>
<tr>
<td>Curso:</td>
<td><input type="text" name="curso" value=""></td>
</tr>
<tr>
<td colspan="2">
<center><input type = "submit" value = "enviar"></center>
</td>
</table>
</center>
</form>
</body>
</html>
Salve o código abaixo como dados.php
<html>
<head>
<title>Exibir Dados</title>
</head>
<body>
<?php
//variaveis para receber os valores das caixas de textos.
$nome= $_POST["nome"];
$end = $_POST["end"];
$cidade = $_POST["cidade"];
$uf = $_POST["uf"];
$cep = $_POST["cep"];
$fone= $_POST["fone"];
$cpf = $_POST["cpf"];
$rg = $_POST["rg"];
$curso = $_POST["curso"];
//variaveis que recebem os valores dos Drops Down
$dia= $_POST["dia"];
$mes= $_POST["mes"];
$ano= $_POST["ano"];
//imprimir na tela as informações abaixo, concatenando textos e variaveis
echo "<h2><b><i>Segue abaixo dados Cadastrados de ".$nome."</i></b></h2>";
echo "<b>Nome:</b> ".$nome."<br>";
echo "<b>Telefone:</b> ".$fone."<br>";
echo "<b>Cidade:</b> ".$cidade."<br>";
echo "<b>Estado:</b> ".$uf."<br>";
echo "<b>CEP:</b> ".$cep."<br>";
echo "<b>RG:</b> ".$rg."<br>";
echo "<b>CPF:</b> ".$cpf."<br>";
echo "<b>Data de Nascimento:</b> (".$dia."/".$mes."/".$ano.")<br>";
echo "<b>Curso:</b> ".$curso;
?>
</body>
</html>