Posts by Jonas gonçalves • 1 point
3 posts
-
0
votes1
answer28
viewsQ: problems with signs of a mysql query with php
<div class="form-group"> <label for="inputCNPJ">Atividade Primária</label> <br /> <select name="id_cnae" class="browser-default custom-select"> <option…
phpasked Jonas gonçalves 1 -
-1
votes1
answer3566
viewsA: Mysql PHP XAMPP - Connect to database
Maybe your solution to connect to the PDO bank: <?php //inicia a conexão com dados informados try{ $conn = new PDO ("mysql:host=localhost; database=banco_de_dados","login","senha"); }catch…
-
-1
votes1
answer38
viewsQ: How to send the chosen value within an option that has a query in the database
<?php session_start(); include 'conexao.php'; ?> <form action="recebe.php" method="POST"> <select class="browser-default custom-select"> <option…