I cannot figure out what the ?> <? syntax is doing in this code. I have searched the php syntax page and this is not an opening or closing tag nor a short open tag. The code will not compile without it and I am getting a strange coloring in the curly brackets that follow.
if(isset($_POST)){?>
<form method="POST" action="Form_Index.php">
User <input type="text" name="userTwo"></input><br/>
Pass <input type="password" name="passTwo"></input><br/>
<input type="submit" name="submit" value="Go"></input>
</form>
<?}