Jump to content

Error Update


xyn

Recommended Posts

Hii,

I used the [b]ARRAY [/b]as adviced then I wanted to have a form where the e-mail is [b]NOT [/b]required, then I tried avoiding the e-mail input and the array puts the error up anyway. So I tried to put:

[code]$mail = $_POST[email];
    
    if (isset($_POST['name']) && empty($_POST['name']))
    {
    $error[] = "Your name was not provided. Please enter your name";
    }
    if (isset($_POST['artist']) && empty($_POST['artist']))
    {
    $error[] = "The Artists name was not provided. Please enter the artists name.";
    }
    if (isset($_POST['song']) && empty($_POST['song']))
    {
    $error[] = "The Song name was not provided. Please enter the Song Name.";
    }
    
    if ( isset($_POST['email']))
        {
        if( !preg_match('|^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z0-9]{2,4}$|i', $mail))
        {
        $error[] = "You provided an invalid e-mail. Please check you entered it correctly.";
        }
    }[/code]

Then I still get the same errors.. So i'm not quite sure how to avoid this. But I'm trying to keep this error within the array so when it is filled incorrectly it's added with the list of errors.

my code is...

[code]$mail = $_POST[email];
    
    if (isset($_POST['name']) && empty($_POST['name']))
    {
    $error[] = "Your name was not provided. Please enter your name";
    }
    if (isset($_POST['artist']) && empty($_POST['artist']))
    {
    $error[] = "The Artists name was not provided. Please enter the artists name.";
    }
    if (isset($_POST['song']) && empty($_POST['song']))
    {
    $error[] = "The Song name was not provided. Please enter the Song Name.";
    }
    
    if ( isset($_POST['email']))
        {
        if( !preg_match('|^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z0-9]{2,4}$|i', $mail))
        {
        $error[] = "You provided an invalid e-mail. Please check you entered it correctly.";
        }
    }
    
    if (is_array($error))
        {
        
        echo "Please correct the following errors:\n<UL>\n";
        
        foreach($error as $key => $value)
            {
            
            echo "<LI>" . $value . "</UL>\n";
            
            }
            
            echo "</UL>";
        exit;
    }[/code]
Link to comment
Share on other sites

$mail needs to be $_POST['email']

On this line:
if( !preg_match('|^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z0-9]{2,4}$|i', [!--coloro:red--][span style=\"color:red\"][!--/coloro--][b]$mail[/b][!--colorc--][/span][!--/colorc--]))

The red text is what needs to be changed to $_POST['email']
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.