Show Example of what Phone masking Enable vs Disabled

This commit is contained in:
johnnyq
2024-10-08 16:13:03 -04:00
parent e90200aebe
commit 7eee69366a

View File

@@ -230,12 +230,12 @@ require_once "inc_all_admin.php";
while ($row = mysqli_fetch_array($sql)) { while ($row = mysqli_fetch_array($sql)) {
$phone_mask = intval($row['config_phone_mask']); $phone_mask = intval($row['config_phone_mask']);
} ?> } ?>
<option <?php if ($phone_mask == 1) { <option <?php if ($phone_mask == 1) { echo "selected"; }?> value=1>
echo "selected"; Enable - e.g. (412) 888-9999
}?> value=1>Enable</option> </option>
<option <?php if ($phone_mask == 0) { <option <?php if ($phone_mask == 0) { echo "selected"; }?> value=0>
echo "selected"; Disabled - e.g. 4128889999
}?> value=0>Disabled</option> </option>
</select> </select>
</div> </div>
</div> </div>