Displays the standard Path dialog box.
Contents |
string wb_sys_dlg_path ([int parent[, string title [, string path]]]])
Returns a string representing the path to use or an empty string, if the action has been cancelled; FALSE, if an error ocurred.
<?
$path = getcwd();
if($path = wb_sys_dlg_path(NULL, 'Select path', $path))
{
wb_message_box(NULL, $filename);
}
?>