WEB DEVELOPMENT
[edit]

Symbolic Links

PHP can be used to create Symbolic Links with the following script:


$target = '/var/www/public_html/folder';
$shortcut = 'folder';
symlink($target, $shortcut);
echo readlink($link);