If you want to show a block only to a specyfic user change option in "Show block on specific pages:" area to "Show if the following PHP code returns TRUE (PHP-mode, experts only)." and paste the code shown below:
<?php
global $user;
if ($user->uid == 1){
return TRUE;
} else {
return FALSE;
}
?>
The only thing to chagne in the code is the user ID that in the example above equals "1".
That's it :)
Read more