Hey all,
does anyone know hwo to send backslashes in an address bar. This is my code so far:
$dirname = "C:\\phpdev";
$dir= opendir($dirname);
while ( false!= ($file = readdir($dir) ) )
{
if ( ($file != ".") and ( $file != "..") )
{
$destination = "C:\\$file";
$fullpath = "$dirname\\$file";
$file_list .= "<a href='#' onClick=\"window.open('copyutil01.php?fullpath=$fullpath&destination=$destination')\">Copy</a> - $file<br>";
}
}
closedir($dir);
echo($file_list);