How can a value be disabled in a drop-down menu using PHP?

To disable a specific value in a drop-down menu using PHP, you can add a disabled attribute to the option tag for that value. This will prevent the user from selecting that particular option in the drop-down menu.

<select name="dropdown">
  <option value="1">Option 1</option>
  <option value="2" disabled>Option 2 (Disabled)</option>
  <option value="3">Option 3</option>
</select>