Scott, <snip> > if (isset($_POST['submit'])) { > ... process form data > } change to: if (_SERVER["REQUEST_METHOD"] == 'POST') { ... process form data } Then it won't matter if they press the button or push "Enter" <snip> HTH