Okay! So.. When I checked the source of the script, there was only name and not the path.. You have to give the path to your images.. Secondly, You don't have to give the whole path, ie.,
$img_src="C:/wamp/www/prawin/new/locations/test/upload/image/";
Since you are executing the script from http://localhost, this should work just fine.
$img_src="prawin/new/locations/test/upload/image/";
Lastly, you have to concat $img_src to $filename to get the path of the image.
echo '<img src="'.$img_src.$filename.'"/>';
And please indent your code. Indentation is very helpful when you have more than 2 lines of code. :)