Possible Duplicate:
form validation for newsletter signup with javascript popup

http://www.3dmark3t.com/contact.html So on my webpage here if you don't complete what is required it will say there were errors and you need to go back and fix them. Now I want it to stay on the same page and have a popup appear instead saying there were errors and click ok to fix them. thank you in advance!

link|improve this question

1  
You could use JS validation, which makes the popup simple to do. You'd still need to duplicate the validation logic on the server, though. – Marc B Oct 20 '11 at 17:42
As alternative: use HTML5 form attributes <input required> and a Javascript shim to emulate the behaviour in older browsers. – mario Oct 20 '11 at 17:44
feedback

closed as exact duplicate by mario, Tim Post Oct 26 '11 at 9:55

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 1 down vote accepted

You can use javascript validation or HTML5. If you don't want these ways you can just open a popup window and set your form's target to it. Like this :

<form method="post" action="anything.php" onsubmit="window.open('','my_form_target', 'width=300,height=200', true); this.target='my_form_target';" >
...
link|improve this answer
Sweet thank you that did the trick but how to I get it to be a fixed width and height so you can't resize it and have a button in the box in the bottom right corner that says okay and closes the window. – Zachary1748 Oct 20 '11 at 18:11
You can resize your window using javascript. (change window.width and .height in page's load event) For button concern, place a button at your page and call close() function in it's click's event. – SigNaL89 Oct 20 '11 at 18:20
Okay well when the message succeds it has my success message and automatically redirects to home page but it does it in the new window how would I get it to redirect in the original window? – Zachary1748 Oct 20 '11 at 18:22
you can access your main window using window.opener in the child window. for example change parent's location this way : window.opener.location.href = 'somewhere.com'; – SigNaL89 Oct 20 '11 at 18:31
Can you explain a little bit better? Im still kind of new... – Zachary1748 Oct 20 '11 at 18:34
show 7 more comments
feedback

try this for validation

<?php
    if($_SERVER['REQUEST_METHOD']=='POST'){
        $name = $_POST['uname'];
        $email = $_POST['email'];

        $valid_arr = array();
        $error_arr = array();

            if($name == ''){
                $error_arr['name'] = 'Required';
            }
            else if(!preg_match('/^[a-zA-A]+$/',$name)){
                $error_arr['name'] = 'Please put correct value';
            }
            else{
                $valid_arr['name'] = $name;
            }

            if($email == ''){
                    $error_arr['email'] = 'Required';
                }
                else if(!preg_match('/^[a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.([a-zA-Z]{2,4})$/',$email)){
                    $error_arr['email'] = 'Exm.- john@gmail.com';
                }
                else{
                    $valid_arr['email'] = $email;
                }

                if(count($error_arr) == 0){
                    header('location: success.php');
                }
                else{
                    echo 'Error in Loading';
                }
    }
    ?>
    <html>
    <head>
    </head>
    <body>
    <form action="<?php $_SERVER['PHP_SELF'];?>" method="POST">
        <table>
        <tr>
            <td><label>User Name :</label></td>
            <td><input type="text" name="uname" value="<?php echo $valid_arr['name'];?>"/></td>
            <td class="error"><?php echo $error_arr['name'];?></td>
        </tr>
        <tr>
            <td><label>Email :</label></td>
            <td><input type="text" name="email" value="<?php echo $valid_arr['email'];?>"/></td>
            <td class="error"><?php echo $error_arr['email'];?></td>
        </tr>
        <tr>
            <td><input type="submit" name="save" value="Submit"/></td>
        </tr>
        </table>
    </form>
    </body>
    </html>
link|improve this answer
I also recommend a hidden form field to prevent bots submitting the form and then amend the if($_SERVER['REQUEST_METHOD']=='POST') to something like if($_SERVER['REQUEST_METHOD']=='POST' && $_POST['hidden_field'] == 'random_string). I use Vaibhav's style of technique with the hidden field and it tends to work well. – Ryan Oct 20 '11 at 18:02
1  
This is not what he's looking for and vulnerable to XSS exploitation. – ceejayoz Oct 20 '11 at 18:03
That didn't have a popup? – Zachary1748 Oct 20 '11 at 18:07
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.