Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using validation.php by benjaminkeen to validate a form. The catch is i have stage3.php which loads two different forms base on selection. And i have the opening tag and closing tag in stage3.php. Two different forms are loaded by jquery and these files ar e just form fields in a .php file. I have also all the validation rules in stage3.php. But as soon as the form submits the select form disappears.

<?php
$errors = array(); // set the errors array to empty, by default
$fields = array(); // stores the field values
$success_message = "";

if (isset($_POST['submit']))
{ 
//rules
...........
$("#segment2").change(function() {
    var file = $("#segment2").val();
    var pars = {
countries : '<?php echo $json->encode($country);?>',
        price : '<?php echo $_POST['price']; ?>',
        descr : '<?php echo $_POST['descr']; ?>'
    };
    if((file != '') && (submitcount == 0))
    {
    $.post(file, pars, function(data) {
            $('#selectedform').html(data).show(300);
    });
    // submitcount++;
    } else {
    var file = "blank.htm";
    $('#selectedform').load(file).hide();
    }
});
<form name="formTest" method="POST" action="">
    <select name="segment2" id="segment2">
        <option value="">Segment jQuery</option>
        <option value="luxury.php">luxury</option>
        <option value="nonluxury.php">nonluxury</option>
    </select>
    <div id="selectedform" style="display:none;"></div>
    <div id="systemWorking" style="display:none"><img src="imgs/ajax-loader.gif" alt="Laden" /></div>
</form>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.