I don't know how jcryption works, so I can't help you with that.  Also, I 
don't know why your session closing isn't working, is that snippet of PHP 
the only contents of the file?  At a guess, I would say that your file 
should probably contain just this:

<?php
    session_start();
    session_destroy();
    header("Location: index.html");
?>

with no leading spaces, blank lines, or other text.

To get two functions to run in the "beforeSubmit" option, you need to 
create a new function that calls them both, and assign that to the 
beforeSubmit:

var opciones= {
    beforeSubmit: function () {
        validate();
        mostrarLoader();
    }
    // rest of options
};

On Wednesday, December 26, 2012 4:24:17 AM UTC-5, Chrystopher Medina wrote:
>
>
> sorry again my friend i just had a few blanks before  
>
>  .....here i had a few blanks ...<?php
>         session_start();
>      session_destroy();
>      header("Location: index.html");
>         ?>
> it´s so weird   thanks for everything
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-visualization-api/-/1yH2QgdjY0cJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.

Reply via email to