I've seen <?= used sometimes to echo variables and I'm wondering if there is a recommended way to print variables.
I've been told to use <?php ?> brackets to avoid confusing XML parsers. One concern I have is that <?php= doesn't work for echoing variables. I'd rahter not mix and match <?= and <?php echo statements so it seems like <?= isn't the best choice for printing variables.