First up, don't use short tags. Use <?php instead. One reason is that it won't work from php6.
Second, make sure that your variables are safe from database injection before you use them in queries. [man]mysql_real_escape_string[/man] can help you with this.
And now for your question. After a php command you should use semicolon. And there is no command named <br><br>. I assume that you mean to use it as html, then it should be inside the " signs.