Posts by Natan Martins Nouzanadam • 7 points
5 posts
-
0
votes3
answers50
viewsQ: Count data from a table to sum
Hello folks I’m crando a Dashboard and I came across a challenge and I don’t know what to do. Table Order of Services Nome_do_profissional = Susana Serviço = MegaHair Valor = 80 I need to create a…
-
0
votes1
answer26
viewsQ: Update MYSQL Table Data
I can’t accomplish UPDATE of the data from my table. $id = 7; $TrocaNome = "Ronaldo"; $TrocaEmail = "[email protected]"; $up = "UPDATE usuario SET nome='$TrocaNome', email='$TrocaEmail' WHERE…
-
-8
votes2
answers47
viewsQ: How to register more information in the table
This is my code: $nome = $_POST['nome']; $rg = $_POST['rg']; $endereço = $_POST['endereço']; $conta = $_POST['conta']; $agencia = $_POST['agencia']; $operação = $_POST['operação']; $bandeira =…
-
-1
votes1
answer92
viewsQ: Print table data
I have in the following code: $sql = mysqli_query($strcon, "SELECT * FROM cadastro"); $exibe = mysqli_fetch_row($sql); echo "<table>"; echo "<tr><td>Nome:</td>"; echo…
-
1
votes1
answer1135
viewsQ: Print Mysql Table data in PHP
I have the following code: <?php //iniciando a conexão com o banco de dados include_once("conectar.php"); if (!$strcon) { die('Não foi possível conectar ao Banco de Dados'); } $sql =…