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
1 changed files with 6 additions and 6 deletions

View File

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