Felipin_182 Posted October 31, 2011 Report Share Posted October 31, 2011 Hola: estoy arreglando un problema en PHP, es un còdigo para subir archivos y no logro solucionar el problema. Tengo este código: Lo unico que he logrado detectar es queal enviar los datos, no vienen las caraacteristicas del archivo (tmp,tipo, etc) pero nada más. <?php include("../includes/conn.php"); include("../includes/class.SQL.php"); include("../includes/funciones.php"); include("../includes/loaderscreen.htm"); ?> <script language="javascript"> window.outerHeight = 60; window.outerWidth = 100; </script> <?php echo $_POST['actividad']; if (copy($HTTP_POST_FILES['file']['tmp_name'])) { if ($_POST['actividad'] == 0){ echo "llegue"; $Rs_adjuntos = new SQLQuery("insert into cc_adjuntos (id_cc, id_actividad, nombre_fisico, confirmado, tipo) values (". $_SESSION['Id_Usuario'].", 0, '". $HTTP_POST_FILES["archivo"]["name"] ."', 'n', '".$HTTP_POST_FILES["archivo"]["type"]."')", $Coneccion); } else { $Rs_adjuntos = new SQLQuery("insert into cc_adjuntos (id_cc, id_actividad, nombre_fisico, confirmado, tipo) values (". $_SESSION['Id_Usuario'].", ".$_POST['actividad'].", '". $HTTP_POST_FILES["archivo"]["name"] ."', 'n', '".$HTTP_POST_FILES["archivo"]["type"]."')", $Coneccion); } $Rs_subido = new SQLQuery("select id_adjunto from cc_adjuntos where id_cc = ".$_SESSION['Id_Usuario']." order by id_adjunto desc", $Coneccion); $Rs_subido->movenext(); echo "asdad"; copy($HTTP_POST_FILES['archivo']['tmp_name'], getcwd()."adjuntos/".$_SESSION['Id_Usuario']."_". $Rs_subido->getfield('id_adjunto')."_n"); } else { echo "Error al subir archivo " . $HTTP_POST_FILES['archivo']['name']; } ?> <html> <head> <script language="javascript"> function cerrar(){ <?php if ($_POST['actividad'] == 0){ ?> window.opener.genera_listado_archivos(); <?php } else { ?> window.opener.genera_listado_archivos_actividad(); <?php } ?> window.open('','_parent',''); <!--window.close(); } </script> </head> <body onLoad="cerrar()"></body> <!-- --> </html> <script language="javascript" src="../includes/loader_off.js"></script> Esperando su ayudaaaa!!. gracias. Link to comment Share on other sites More sharing options...
AshWilliams Posted November 8, 2011 Report Share Posted November 8, 2011 En que parte no funciona el código.....ponle unos or die para ver si te manda al carajo en los insert....te muestra el echo actividad??.....usa isset tambien para asegurarte....las fotos en mysql son del tipo blob cierto?? Saludos y dinos en que parte tu código capotea Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now