Function descriptions Function “lmb_simplefileUpload()” Estimated reading: 1 minute insert_file(string $filepath,string $filename,num $level,bool $noupload,string $dublicate); Function that prepares and calls the upload of a file Parameters $filepath The path from which the file should be uploaded $filename The name of the file $level The path level (ID of the folder) $noupload 0: The upload must take place in the browser 1: The upload from within a file is possible $duplicate Possibilities of what should happen to a duplicate file overwrite: The new file overwrites the old file rename: The new file is renamed, new name with ascending number versioning: The old file is versioned skip: The new file is not uploaded $relation The file should be linked to a data record from another table -> array m format array(‘gtabid’=>1,’fieldid’=>2,’datid’=>3) Example insert_file("/home/documents/graphic.png","my_picture.png", 2, 1, "overwrite",array('gtabid'=>1,'fieldid'=>2,'datid'=>3));