Hey,
I am wondering how I make an error come up if you enter an email that has already been used.
I am guessing you need to make a class with the $ symbol?
Conn
Also, if it is possible to do with this code here, could you please help me with it, since that is the code I guess I need to change
<dt>Email Address: *</dt>
<dd><input type="text" name="email" value="<?php echo Vars::POST('email');?>" />
<?php
if($email_error == true)
echo '<p class="error">Please enter your email address</p>';
?>
</dd>