<?php $nome = "Fulano"; $idade = "22"; $matricula = "0001"; $curso = "ADS"; $cidade = "Feira de Santana"; ?> <!DOCTYPE html> <html> <head> <title>Ficha de Aluno</title> </head> <body> <h1>Ficha do Aluno</h1> <p><strong>Nome:</strong> <?php echo $nome;?></p> <p><strong>Idade:</strong> <?php echo $idade;?></p> <p><strong>Matrícula:</strong> <?php echo $matricula;?></p> <p><strong>Curso:</strong> <?php echo $curso;?></p> <p><strong>Cidade:</strong> <?php echo $cidade;?></p> </body> </html>
To embed this project on your website, copy the following code and paste it into your website's HTML: