On 24 kol, 15:22, Michael Lawson <[email protected]> wrote:
> http://sourceforge.net/projects/easyshoutbox/files/easyshoutbox/Easy_...
I don't think this is solution for my problem.
After form is submited server must copy&resize some pictures.
Sometimes it'll last several seconds, but sometimes much longer, so I
want user to know that script is not dead.
If I post response to iframe I can use something like this in post.php
ob_start();
foreach ($foo as $bar) {
resizeImage();
echo "Resizing image $bar";
ob_flush;
flush();
}
This way user will get response everytime image get resized. Can I
achive this with ajax and div?