Posts by Vithor Carlos • 3 points
4 posts
-
0
votes2
answers188
viewsA: present data except successfully for user!
Check that your bootstrap imports have been imported correctly. Test the online link: The css: <link rel="stylesheet"…
-
0
votes0
answers132
viewsQ: How to update to change a table-specific row
How do I change this table? I’m a beginner in PHP/MYSQL and I’m not sure how to change it. Once the person clicks on the "change" icon, they should be routed to a page, which should pull the id of…
-
0
votes2
answers29
viewsQ: My delete is deleting the table data but not redirecting to the page I want
*IN CASE IT DISPLAYS "echo "error while deleting";" even the data has been deleted from the table. Please help me! Page of functions: require 'conexao.php'; function apagar($cod_pedido) { $link =…
-
0
votes1
answer375
viewsQ: How to do 2 Insert at the same time with PHP in MYSQL Database?
Database: DROP DATABASE IF EXISTS mydb; CREATE DATABASE IF NOT EXISTS mydb; USE mydb; CREATE TABLE clientes ( cod_clientes INT UNSIGNED NOT NULL AUTO_INCREMENT, nome VARCHAR (20) NOT NULL, PRIMARY…