// Autor: Mantus - Rafael Trindade
// Email: rafaeltds@terra.com.br
// Modo de uso: SalvarArquivo("campoform","/pasta");

function SalvarArquivo($nomeCampo,$strPath) {
	$file = $_FILES[$nomeCampo];
	$tmp = explode(".",$file["name"]);
	$ext = $tmp[count($tmp)-1];
	$filePath = $file['tmp_name'];
	if ( file_exists($filePath) && is_uploaded_file($filePath) ) {
		move_uploaded_file($filePath, $strPath .".". $ext) or die("erro");
	}
}