Ok i have some php code that will save a webpage to the webserver, with this variable:
$file_to_save = "../../../archives/docs/account_details/text.txt";
that works and saves the file under the name 'text.txt'
But when i try to save it as a variable it doesn't save the file at all
Here's what i tried:
$file_to_save = "../../../archives/docs/account_details/$uic.txt";
also tried:
$file_to_save = "../../../archives/docs/account_details/" . $uic . ".txt";
both do not save the file. I even did an echo $uic; and it printed the name right on the screen. Any thoughts on this?