Posts by Ricardo Nunes • 14 points
2 posts
-
-1
votes1
answer132
viewsA: Doubt about chained list in C
You’ll get a lot of stuff about chained list here: https://www.ime.usp.br/~pf/algorithms/classes/list.html // Esta função recebe uma lista encadeada le // com cabeça e remove da lista a primeira //…
-
0
votes2
answers151
viewsA: Is it possible to insert and remove at the same time on the same php page?
Yes, it is possible. Create two queries $insert_sql = "INSERT INTO confirmados SELECT * FROM hospede WHERE cod_hospede = '$cod_hospede'"; $result1 = mysqli_query($con, $insert_sql); $delete_sql =…