Does your server support shorthand open tags?

a shorthand open tag in php is:


<? 
//phpcode here
?>

instead of:


<?php
//phpcode here
?>

Votey!!