-2
I would like to pass the value of exibir_colunas['cd_cliente']
page List customers by the tag <a>
(recalling that the #atu_cli
serves as anchor for the form as it is an id of the update form).
echo '<td>'.$exibir_colunas['cd_cliente'].'</td>';
echo '<td>'."<a href='/web/form_crud/form_update_cliente.php/#atu_cli'> Atualizar </a>".'</td>';
And on the form page Update client the value of exibir_colunas['cd_cliente']
be received by the camp <select>
for value="<?php echo $exibir_colunas['cd_cliente']; ?>
.
<?php
// Mostrar todos os erros do php
ini_set('display_errors', '1');
ini_set('display_startup_errors', '1');
error_reporting(E_ALL);
$exibir_colunas['cd_cliente'] = $_GET['cd_cliente'];
try {
$seleciona_nomes = $conexao->query("SELECT cd_cliente, nome FROM cliente ORDER BY cd_cliente");
$resultado_selecao = $seleciona_nomes->fetchAll();
} catch (PDOException $falha_selecao) {
echo "A listagem de dados não foi feita".$falha_selecao->getMessage();
die;
} catch (Exception $falha) {
echo "Erro não característico do PDO".$falha->getMessage();
die;
}
?>
<p> ID cliente:
<select onclick="buscaDados()" name="cd_cliente" id="cd_cliente" value="<?php echo $exibir_colunas['cd_cliente'] ?>">
<option value=""> Nenhum </option>
<?php foreach($resultado_selecao as $valor): ?>
<option value="<?= $valor['cd_cliente'] ?>"><?= $valor['nome'] ?></option>
<?php endforeach ?>
</select>
</p>
I haven’t been able to.
– Cotavil
I think it is in the update form, because the listing is correct.
– Cotavil