PHP uses plupload to obtain the uploaded file name in the background and uses plupload to upload images. to write the uploaded image address to the database, ask how to obtain the uploaded image file name in the background. Thank you!
Reply to discussion (solution)
No, but the content of the uploaded file is in the $ _ FILES global variable.
Print this global variable on the php receiving page. print_r ($ _ FILES)
Generally, the file name must be renamed according to a set of rules, otherwise it will be easily overwritten by the names uploaded later.
You can use $ _ FILES ['upload control name'] ['name'] to obtain the uploaded image name.
For example
Available
$ _ FILES ['photo'] ['name'] to obtain
We recommend that you rename the file by date instead of using the uploaded file name. this will overwrite the file of the same name by mistake.