You should be using a single equals sign here, and lose the quotes to assign the value 19 to $total.
In fact, lose the quotes for all the integers unless you intend to compare strings.
$total =19;
if ($total >= 13) {
echo "Total is great or equal to 13";
} else {
echo "Nope";
}