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 [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en.

Reply via email to