Posts by Guilherme Goedtel • 1 point
3 posts
-
0
votes2
answers1167
viewsA: Take the value of a php session
<?php session_start(); ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); require_once("../cabecalhoInicial.php"); …
-
-1
votes3
answers145
viewsA: PHP - Mysql remote connection
$servidor = "HOST"; $usuario = "USUARIO"; $senha = "SENHA"; $dbname = "DB_NAME"; $conn = mysqli_connect($servidor, $usuario, $senha, $dbname); $sql = "SELECT * FROM…
-
0
votes2
answers48
viewsA: Place alphabetical order increasing the description, when the result comes from a search through numerical field
Good afternoon Clériston Melo ! Try changing your select to see if it works, try this select below: SELECT * FROM collaborator WHERE colab_funcao in($cod_ger,$cod_gerjr) ORDER BY colab_nome_venda…