this gets me image from server, and at the same time fills some variables into session object (i.e. what should user calculation result into)
Code:
<img src='../mcCaptcha' alt = 'capt....
captcha looks like this:
Code:
3*e=15
2*6=a
... etc
so next html element, for user input, after image, must pull something from session variable, to output like:
Code:
e=<input type = .../>
a=<input type = .../>
The prob is that HTML, draws out, faster than session captcha variables are changed, so I get one captcha before variables in HTML.
How to handle that ?