Dreamweaver shows an error for the Null Coalescing Operator (??), a PHP 7 feature
I've changed my Dreamweaver settings to be PHP 7+ compliant.
Some simple code like the Null Coalescing Operator ?? throws errors and causes trouble when it it fully valid code.
Please make Dreamweaver fully PHP 7+ compliant.
// Old stupid way
$Test = isnull($_POST["PossiblyNullField"])?$_POST["PossiblyNullField"]:"";
// This is the PHP 7+ correct way to make sure that a field that may or may not exist, depending on if the user put data into it doesn't throw an error:
$text = $_POST["PossiblyNullField"]??"";

