Andei dando umas pesquisadas no fórum sobre como fazer formulários em PHP. Mas não estou conseguindo. Estou com uma pagina em HTML que usa formulário drop-down, além dos campos normais como Nome, E-mail, etc...
Como crio um arquivo PHP pro formulário abaixo?
<form method="post" enctype="multipart/form-data" action="form.php"> <input type="hidden"> <table border="0" cellpadding="0" cellspacing="0" align="center"> <tr> <td><h3 style="border-bottom:1px solid black;">Inscreva Seu Site</h3></td> </tr> <tr> <td> <label for="Nome" style="float:left;width:140px;">Nome</label><input type="text" name="Nome" id="Nome" value="" maxlength="40" style="width:200px;"><div style="clear:left;height:20px;"> </div> <label for="E-mail" style="float:left;width:140px;">E-mail</label><input type="text" name="E-mail" id="E-mail" value="" maxlength="100" style="width:200px;"><div style="clear:left;height:20px;"> </div> <label style="float:left;width:140px;" for="Categoria">Escolha a Categoria</label><select name="Categoria" id="Categoria"><option value="Profile">Melhor Profile</option><option value="Blog">Melhor Blog</option><option value="Fotolog">Melhor Fotolog</option><option value="Comunidade">Melhor Comunidade</option><option value="Album">Melhor Album de Fotos Artisticas</option><option value="Texto">Melhor Texto</option><option value="Musica">Melhor Musica</option></select><div style="clear:left;height:20px;"> </div> <label for="Link" style="display:block;margin-bottom:5px;">Cole Aqui o Seu Link</label><textarea name="Link" id="Link" style="width:400px;height:100px;"></textarea><div style="clear:left;height:20px;"> </div> </td> <tr> <td align="right"> <input type="submit" value=" Inscrever "> <input type="reset" value=" Apagar "> </td> </tr> </table> </form>
Alguém pode me dar uma ajuda?