[jQuery] Re: file upload field and standard fields

2009-02-10 Thread phicarre
The solution: to put a delay before to close the dialog. On 2 fév, 14:11, phicarre wrote: > ... and $_POST is empty when $_FILES is full !!! > > On 2 fév, 14:07,phicarre wrote: > > > Yes I know ! read the first message for the problem !! > > $_FILES is always empty when $_POST is full > > > On 2

[jQuery] Re: file upload field and standard fields

2009-02-02 Thread phicarre
... and $_POST is empty when $_FILES is full !!! On 2 fév, 14:07, phicarre wrote: > Yes I know ! read the first message for the problem !! > $_FILES is always empty when $_POST is full > > On 2 fév, 13:14, jQuery Lover wrote: > > > Well, it seems you are getting your 'nom' and 'phenom' text fie

[jQuery] Re: file upload field and standard fields

2009-02-02 Thread phicarre
Yes I know ! read the first message for the problem !! $_FILES is always empty when $_POST is full On 2 fév, 13:14, jQuery Lover wrote: > Well, it seems you are getting your 'nom' and 'phenom' text fields... > and yes, domb is right, file information data is stored in $_FILES > array... > >

[jQuery] Re: file upload field and standard fields

2009-02-02 Thread jQuery Lover
Well, it seems you are getting your 'nom' and 'phenom' text fields... and yes, domb is right, file information data is stored in $_FILES array... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Mon, Feb 2, 2009 at 3:35 PM, phicarre wrote: > > No explanation ;-( > > On

[jQuery] Re: file upload field and standard fields

2009-02-02 Thread donb
File data is not put into the POST collection, it goes in the $FILES collection On Feb 2, 5:35 am, phicarre wrote: > No explanation ;-( > > On 30 jan, 17:10, phicarre wrote: > > > I replace my code by this one: > > > echo "VAR DUMP:"; > >   var_dump($_POST); > > ?> > > > and the result is: > >

[jQuery] Re: file upload field and standard fields

2009-02-02 Thread phicarre
No explanation ;-( On 30 jan, 17:10, phicarre wrote: > I replace my code by this one: > echo "VAR DUMP:"; >   var_dump($_POST); > ?> > > and the result is: > > VAR DUMP:array(3) { >   ["nom"]=> >   string(0) "" >   ["prenom"]=> >   string(0) "" >   ["MAX_FILE_SIZE"]=> >   string(6) "10"} >