Quick question. Is there a difference between
$success = true;
and
$success = \'true\';
I know they are n
true is a boolean, 'true' is a string.