esta es el codigo que utilizo
Código PHP:
$insertSQL = sprintf("INSERT INTO noticias (fecha, fechanac, titulo, detalle, foto, documasociado, nota, ubicacion, categoria) VALUES (%s, %s, %s, %s, 'fotos/{$_FILES['foto']['name']}', 'mp3/{$_FILES['documasociado']['name']}',%s, %s, %s)",
GetSQLValueString($_POST['fecha'], "date"),
GetSQLValueString($_POST['fechanac'], "date"),
GetSQLValueString($_POST['titulo'], "text"),
GetSQLValueString($_POST['detalles'], "text"),
GetSQLValueString($_POST['nota'], "text"),
GetSQLValueString($_POST['ubicacion'], "text"),
GetSQLValueString($_POST['categoria'], "text"));
}