Well, what I wanted was to do a select, with several parameters other than just 1.
$verifica = mysqli_query($link, "SELECT * FROM usuarios WHERE login='$login'");
In the case of the above code I only have 1 parameter that is if the login = $ login, but I wanted to do to add more parameters, ie more conditions, such as age = $ age. How can I do this?
Thank you.