2
I do a search with in mysql, but $_GET['id'] does not show, although it shows in the address bar : http://localhost/t-shirts/index.php? funcao=edit$id=18
$sql = mysqli_query($conexao, "SELECT * FROM produtos WHERE id= '". $_GET['id'] ."'");
Why doesn’t return the id number like this?
Beware of SQL Injection! http://pt.wikipedia.org/wiki/Inje%C3%A7%C3%A3o_de_sql ...... You should use Mysqli/PDO and Prepared statements
– user622