PHP Functions

What is the difference between the functions unlink and unset?

[FPHP]unlink[/FPHP]
[FPHP]unset[/FPHP]
you tell me. Its pretty clear in the basic definition of the function.

Unset() will delete a PHP variable, and potentially eventually free up memory in PHP. [URL=“http://php.net/manual/en/function.unlink.php”]Unlink() is for use with filesystem files. It will delete a file, located on your hard drive.