I'd like to know if the following is possible to do in php. Preferably only php, not something like a php+javascript solution.
The site contains a database with 4 tables. The user will export their data from an access database, and then upload the 4 csv files to the server in order to update the database.
What I'd like to have is a "wait" page which displays a message like "Uploading files" with an animated graphic or something while the files are being uploaded and the database updated. Much like searching for a flight or hotel on expedia.com or travelocity.com
How can this be done with php?
Additionally I was wondering if a series of messages could be printed out as the script runs, for example:
script starts... print "update started\n"
file1 uploaded... print "file1 uploaded... "
table1 updated... print "table1 updated successfully\n"
...and son on.
Thanks for the help!
The site contains a database with 4 tables. The user will export their data from an access database, and then upload the 4 csv files to the server in order to update the database.
What I'd like to have is a "wait" page which displays a message like "Uploading files" with an animated graphic or something while the files are being uploaded and the database updated. Much like searching for a flight or hotel on expedia.com or travelocity.com
How can this be done with php?
Additionally I was wondering if a series of messages could be printed out as the script runs, for example:
script starts... print "update started\n"
file1 uploaded... print "file1 uploaded... "
table1 updated... print "table1 updated successfully\n"
...and son on.
Thanks for the help!