mirror of https://gitee.com/jeecg/jeecg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
380 B
9 lines
380 B
<?php
|
|
// The Demos don't save files
|
|
|
|
if (isset($_FILES["resume_file"]) && is_uploaded_file($_FILES["resume_file"]["tmp_name"]) && $_FILES["resume_file"]["error"] == 0) {
|
|
echo rand(1000000, 9999999); // Create a pretend file id, this might have come from a database.
|
|
}
|
|
|
|
exit(0); // If there was an error we don't return anything and the webpage will have to deal with it.
|
|
?>
|