PHP パラメーター出し分け

URLパラメーターによる出し分け

<?php if(isset($_GET['test’])) { $test = $_GET['test’]; } ?>
<?php if($test): ?>
<?php else?>
<?php endif?>