It would be interesting to have a value for a variable in the value attribute, so every time you load the data from the database you would assign the values.
For example:
You would call the page passing the values in the request:
<?php
function __autoload($class) {
if (file_exists("../app.ado/{$class}.class.php")) {
include_once "../app.ado/{$class}.class.php";
}
}
// Verifica se exitem valores passados na requisição - A mesma página serve para cadastro e edição,
// quando é aberta sem nenhum valor passado é para cadastro, caso contrário é edição
if (empty($_REQUEST)) {
// Variáveis que estão referenciadas nas textbox
$id = "";
$nome = "";
$emailContato = "";
$idInstituicaoEnsino = "";
$tipo = "";
} else {
$id = $_REQUEST['id'];
$nome = $_REQUEST['nome'];
$emailContato = $_REQUEST['emailContato'];
$idInstituicaoEnsino = $_REQUEST['idInstituicaoEnsino'];
$tipo = $_REQUEST['tipo'];
}
?>
And then we have the html:
<form method="post" action="controller.php">
<table><!-- Campos de preenchimento-->
<!-- Identificação-->
<tr>
<td>
Identificação
</td>
<td>
<input type="text" name="_id"
value="<?= $id ?>"
placeholder="Id Numérico"
size="10" title="Numero que identifica o curso"/>
</td>
</tr>
<!--Nome-->
<tr>
<td>
Nome
</td>
<td>
<input type="text" name="_nome"
value="<?= $nome ?>"
placeholder="Nome do curso"
size="50" title="Nome do curso"/>
</td>
</tr> ... E assim por diante