I've been studying various php code to learn more and better techniques. I came accross a couple of pieces today that I'm not familiar with.
FIRST
$memberConfig['Username']==$memberID ? TRUE : FALSE)
I understand the first part. It is an array variable. What does $memberID ? TRUE : FALSE mean?
SECOND
I've noticed in various code pieces that some function calls have an @ in front of them. For example,
@mysql_query();
What is the purpose of the @?