Download this file
7 lines (7 with data), 339 Bytes
| <?php
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.
} else {
echo ' '; // I have to return something or SWFUpload won't fire uploadSuccess
}
?>
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.