I already know how to make registrations, however login is a bit complicated for me. I found some materials on the internet and I would like to know what the following line does. I know I'm collecting information from the form, I wanted to know what specifically makes " ? $_POST['password'] : ''; "
that part of the line on.
// resgata variáveis do formulário
$email = isset($_POST['email']) ? $_POST['email'] : '';
$password = isset($_POST['password']) ? $_POST['password'] : '';