Is it possible to have an upload box on a website where as the XML file is being uploaded it can be parsed at the same time. So for example the values could start to populate 开发者_开发知识库say a div rather than waiting for the complete file to be uploaded and then parse.
No, the file needs to be completely uploaded before you can use the move_uploaded_file
function to move it to a temp directory for processing.
I think you should have a look at the Magic Parser and as far as i can remember, it does have that option.
精彩评论