I am looking to expand on my PHP knowledge, and I came across something I am not sure what it is or how to even search for it. I am looking at php.net isset code, and I see
What you're looking at is called a Ternary Operator, and you can find the PHP implementation here. It's an if else statement.
if else
if (isset($_GET['something']) == true) { thing = isset($_GET['something']); } else { thing = ""; }