Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
<?php isset($_GET['enterprises_id']) and $_GET['enterprises_id']==$enterprise['id']?'selected="selected"':'' ?>
<?php echo isset($_GET['enterprises_id']) and $_GET['enterprises_id']==$enterprise['id']?'selected="selected"':''; ?>
<?= isset($_GET['enterprises_id']) and $_GET['enterprises_id']==$enterprise['id']?'selected="selected"':'' ?>
<option value="<?=$enterprise['id']?>" <?php echo isset($_GET['enterprises_id']) and $_GET['enterprises_id']==$enterprise['id']?'selected="selected"':''; ?>> <?=$enterprise['name']?> </option>
Можно так
Или так
Ваш код