How can I write the following so that the message 'Passwords did not match.' appears in the center of the page and not to the left (default)
}
// check passwords match
if ($_POST['passwd'] != $_POST['passwd_again']) {
die('Passwords did not match.');
}
Thanks