Posts by Julia Alves • 1 point
1 post
-
0
votes1
answer230
viewsQ: Changing data with PDO but does not update in the database
My form is like this: // pega o ID da URL $id = isset($_GET['id']) ? (int) $_GET['id'] : null; //Valida a variavel da URL if (empty($id)){ echo "ID para alteração não definido"; exit; } $sql_selecao…