Miren mi problema es el siguiente,
Estoy usando uplodify para subir imagenes la cosa es que cuando subo la imagen necesito tambien pasar el Ngaleria, al php pero por mas que lo intento no hay manera, y parere que no funciona con variables de session, este es el codigo a ver si alguien ve algo raro.
Este es el html:
Código HTML:
Ver original
<html> <head> <link href="style.css" rel="stylesheet" type="text/css"> <link href="js_galeria/uploadify.css" type="text/css" rel="stylesheet" /> <script type="text/javascript"> $(document).ready(function() { $('#file_upload').uploadify({ 'removeCompleted' : false, 'fileDesc' : 'Tipo de imágenes permitidas (.JPG, .GIF, .PNG)', 'fileExt' : '*.jpg;*.jpeg;*.gif;*.png', 'uploader' : 'js_galeria/subida.swf', 'script' : 'upload.php', 'cancelImg' : 'js_galeria/cancelar.png', 'folder' : 'uploads', 'auto' : false, 'multi': true, 'queueSizeLimit': 10, 'onQueueFull': function(event, queueSizeLimit) { alert("El maximo de archivos permitidos simultaneamente es de" + queueSizeLimit + " una vez subidos podras seguir subiendo"); return false; }, 'onComplete': function(event, ID, fileObj, response, data) { // you can use here jQuery AJAX method to send info at server-side. $.post("upload.php",{name: fileObj.name, description: $("#description").val()}, function(info) { //$.post("insert.php",{name: fileObj.name, description: $("#file_upload").val()}, function(info) { alert(info); // alert UPLOADED FILE NAME }); }); }); </script> </head> <body> <?php session_start(); echo $Ngaleria = $_GET['Ngaleria']; if($_GET['Ngaleria']){ echo $_SESSION['Ngaleria'] = $Ngaleria; } ?> <table border="0" align="left" width="1210px" cellpadding="0" cellspacing="0"> <tr> <td colspan="2"> <table border="0" width="100%" align="center" style="background-color:#ffffff;" cellpadding="1" cellspacing="0"> <tr> <td align="center" width="70px" style="border-right:solid 1px #e8e8e8;"> <font style=" font-family: arial; color:#000000; font-weight:bold; font-size: 13px;">Ver</font> </td> <td align="right" height="40px" style="background-image:url(imagenes_cofranet/fondo_pestanas.png); background-repeat:repeat-x; background-position:0px 0px;"> </td> </tr> </table> </td> </tr> <tr> <td width="800px" style="padding:25px 25px 25px 25px; border-right:solid 1px #dddddd;"> <input type="text" name="page" value="agregar_imagenes" style="width:340px; display:none;"/> <table border="0" align="center" width="100%"> <tr> </tr> <tr> <td> <form id="form1" name="form1" action=""> <input type="text" name="description" id="description" value="<?php echo $_GET['Ngaleria'] ?> " /> <input id="file_upload" name="file_upload" type="file" /> </form> </td> </tr> <tr> <td style="padding-top:20px;"> </td> </tr> </table> </td> <td valign="top" style="background-color:#f8f8f8; margin:0px 0px 20px 0px; border-right:solid 1px #ffffff; border-top:solid 1px #ffffff;"> <div style="width:100%; height:28px; align:left; margin:0px 0px 20px 0px; padding:5px 0px 0px 0px; background-color:#eeeeee;"> </div> <div style="margin:25px 15px 10px 15px; padding-bottom:10px; border-bottom:solid 0px #cccccc;"> </div> </td> </tr> </table> <?/* session_start(); include_once('cerrar_session.php'); */ ?> </body> </html>
y este el php:
Código PHP:
Ver original
<?php include ('conexion.php'); include_once('js_galeria/resize.php'); $tempFile = $_FILES['Filedata']['tmp_name']; $Tipo = $_FILES['Filedata']['type']; $imagen = $_FILES["Filedata"]["name"]; $tmp_name = $_FILES["Filedata"]["tmp_name"]; $targetPath = $_SERVER['DOCUMENT_ROOT'] . $_REQUEST['folder'] . '/'; echo $_GET['Ngaleria']; echo $Ngaleria; echo $_SESSION['Ngaleria'] = $Ngaleria; $_POST['file_upload']; $_POST['description']; echo $consulta = 'INSERT imagenes (Ncofradia, Ngaleria, descripcion, imagen) VALUES (\''.$_SESSION['Ncofradia'].'\', \''.$_POST['description'].'\', \''.$_POST['description'].'\', \''.$_POST['name'].'\')'; $imagen = $_SESSION['Ncofradia'].'_'.$id_imagen.'.'.$extension; $consulta_nombre_imagen = 'Update imagenes Set imagen = "'.$imagen.'" Where Nimagen = "'.$id_imagen.'"'; move_uploaded_file($tmp_name, "imagenes_galerias/$imagen"); # Guardar el archivo en una ubicaci?n, debe tener los permisos necesarios $thumb->size_width(200); $thumb->jpeg_quality(70); $thumb->size_width(700); $thumb->jpeg_quality(90); echo 'buena'; } } ?>
A ver si alguien sabe un poquito del tema y puede orientarme, ahora mismo guarda dos registros en la base de datos cada vez que sube una imgen, el primero no guarda el Ngaleria y el segundo no guarda la extension del archivo.
Un saludo amigos