How can the "continue;" statement be used to skip a specific condition in a PHP loop?

To skip a specific condition in a PHP loop, you can use the "continue;" statement. When the condition you want to skip is met, you can use "continue;" to immediately move to the next iteration of the loop without executing any further code within the loop for that specific iteration.

```php
for ($i = 1; $i <= 10; $i++) {
    if ($i == 5) {
        continue;
    }
    echo $i . "<br>";
}
```

In this example, when the value of $i is equal to 5, the "continue;" statement is executed, skipping the echo statement and moving to the next iteration of the loop.