I have the following code
$image_path = $_FILES[\"p_image\"][\"name\"].time();
it names the file image02.jpg1335279888
image02.jpg1335279888
bu
$path_parts = pathinfo($_FILES["p_image"]["name"]); $image_path = $path_parts['filename'].'_'.time().'.'.$path_parts['extension']