• Как сформировать условие?

    Данное выражение ни чего не выводит
    <?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>