There are some important things to consider here:
First of all, never rely on the file extension that was provided. I could upload a php file with the extension .jpg if I wanted. Granted, I'd probably have to do some more to actually get it to execute as a php file on your server, but it certainly was not a valid image.
If the upload was successful, $_FILES[ 'uploadedfile' ][ 'type' ] will hold the mime-type that was provided by the request. However, this should also not be trusted, as this can be tampered with as well.
A more reliable way to determine whether the uploaded file is actually an image of type jpeg is to use the function getimagesize. getimagesize() will return false if it's not a valid image and will return an array with information about the image, if it recognized the file as an image. Index 2 of the array will hold a value that corresponds with one of these constants that begin with IMAGETYPE_.
$info = getimagesize( $_FILES[ 'uploadedfile' ]['tmp_name'] );
if( $info !== false )
{
// file is an image to begin with
if( $info[ 2 ] == IMAGETYPE_JPEG )
{
// file appears to be a valid jpeg image
}
}
This is somewhat of an old school method which, as far as I know, is reliable though.
I believe, depending on platform (Windows/*nix) and version (< 5.3, >= 5.3) there are more reliable ways to determine the actual mime-type of a file though. I'll see what I can find for you about that later on.
edit:
I forgot about the renaming part.
Simply replace this:
$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
... with this:
$target_path = $target_path . 'profile.jpg';
In other words, when you move the file with move_uploaded_file() the second argument will be the new path (including the new file name).