So, I have two php functions:
function RADD_FILE_GLOBAL(){
...
$file_att = implode(",",$files);
}
I need to access this $file_att variable from another function:
function FILE_NAME(){
// need $file_att here
}
How do I access a variable from another function?