Thanks a lot, this is exaclty what I was expecting.

Just answering your question, I said student's ID and grade just to
simplify the question, but actually I have student's ID, a grade for
each question (1 - N questions) and a comment (text) for each
question. As an example, if I have a 5 questions test, and 100
students, I would need to post 100*(5 (grades) + 5 (comments) + 1
(student's ID)) variables.

Thanks again!

On 16 mar, 10:01, Walter Lee Davis <wa...@wdstudio.com> wrote:
> On Mar 15, 2011, at 6:04 PM, DanielMerliMorais wrote:
>
> > I'm assuming something like a session is created for each post, which
> > is making them to be received properly by insert_data.php, but, again,
> > I just want to receive a final confirmation from anyone that may
> > possible already worked on it.
>
> It's not a session, it's an HTTP request. Because you've bundled  
> together the student ID and the grade in one request, each POST is  
> atomic, and will be accepted by the Web server and your application  
> server as a coherent unit. This should scale fine. Although I'm  
> curious how many such pairs you put into a test page and had the  
> request time out. I thought a POST was pretty much limitless -- if  
> you're using PHP, there's some settings to tweak in your php.ini to up  
> the maximum post size and processing time to heroic levels. I have a  
> form where people can upload video files -- multiple video files --  
> using PHP. I don't think grades are in the same universe.
>
> Walter

-- 
You received this message because you are subscribed to the Google Groups 
"Prototype & script.aculo.us" group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com.
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en.

Reply via email to