check 2 fields are =
Posted: Thu Apr 14, 2005 5:05 pm
Hi,
Whats the correct code for this:
I thought I had it sussed ..But dont get the correct messages displayed .. and when the addresses dont match it still continues and sends the from ..
thanks
Whats the correct code for this:
Code: Select all
<?php
if(!$email_address2)
{
echo '*';
}
if(($email_address) != ($email_address2)) {
echo '<font class="txt">* Email addresses dont match!</font>';
}
?>thanks