This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Pseudo código PHP exemplificando a variável $this | |
| * @author george.mendonca | |
| */ | |
| class Classe | |
| { | |
| encapsulamento $atributo; | |
| ... | |
| encapsulamento function nome_metodo() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Pseudo código PHP exemplificando a criação de uma classe | |
| * @author george.mendonca | |
| */ | |
| Class Nome_da_Classe | |
| { | |
| encapsulamento $atributos; | |
| ... | |
| encapsulamento function nome_metodo( [argumento1, ...] ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Exemplo de classe com PHP 5 | |
| * @author george.mendonca | |
| */ | |
| Class Php5 | |
| { | |
| /** | |
| * Visibilidade de atributos | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Exemplo de classe com PHP 4 | |
| * @author george.mendonca | |
| */ | |
| Class Php4 | |
| { | |
| /** | |
| * Atributos simples | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <form action="salvar.php" method="post"> | |
| <input type="hidden" name="variael_oculta" /><br /> | |
| Nome: <br /> | |
| <input type="text" name="nome" /><br /> | |
| Sobrenome: <br /> | |
| <input type="text" name="sobrenome" /> <br /> | |
| <input type="radio" name="sexo" value="masculino" /> Masculino <br /> | |
| <input type="radio" name="sexo" value="feminino" /> Feminino <br /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <form name="input" action="url.php" method="get"> | |
| Login: <input type="text" name="usuario" /> | |
| <input type="submit" value=" Enviar " /> | |
| </form> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <form> | |
| <input type="checkbox" name="ver" value="Bike" /> Visualizar<br /> | |
| <input type="checkbox" name="edit" value="Car" /> Editar | |
| </form> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <form> | |
| <input type="radio" name="sexo" value="masculino" /> Masculino<br /> | |
| <input type="radio" name="sexo" value="feminino" /> Feminino | |
| </form> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <form> | |
| Senha: <input type="password" name="senha" /> | |
| </form> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <form> | |
| Nome:<br /> | |
| <input type="text" name="nome" /><br /> | |
| Sobrenome: <br /> | |
| <input type="text" name="sobrenome" /> | |
| </form> |