YoungManRiver
IS-IT--Management
All,
I was working on some zip stuff a while back.
See thread434-1390625
I'm running a new project as part of or a sub piece of my project at:
I have posted the two main files and two methods I'm attempting to use to display the html template at:
As you can see from diagnostic echos, most code is working right, but still having problems getting input field values to refresh.
I particular, when Type="Directory" I want to strip the file off the directory and display only the directory, but re-display the complete path with file in the input box.
I worked with the combination:
to get the right directory and file name, but still can not get them to pass. I know this is possible, without declaring GLOBALS on, but do not know the technique.
Can someone enlighten me?
Thanks!
YMR
I was working on some zip stuff a while back.
See thread434-1390625
I'm running a new project as part of or a sub piece of my project at:
I have posted the two main files and two methods I'm attempting to use to display the html template at:
As you can see from diagnostic echos, most code is working right, but still having problems getting input field values to refresh.
I particular, when Type="Directory" I want to strip the file off the directory and display only the directory, but re-display the complete path with file in the input box.
I worked with the combination:
Code:
$src_fil = $HTTP_POST_VARS['src'];
$src_fil = realpath($src_fil);
$lst_pos = strrpos($src_fil,'\');
$src_dir = substr($src_fil,0,$lst_pos);
$src_fil = addslashes($src_fil);
$src_dir = addslashes($src_dir);
Can someone enlighten me?
Thanks!
YMR