Pagina 1 di 2 1 2 ultimoultimo
Visualizzazione dei risultati da 1 a 10 su 17
  1. #1

    immagini multiple nel db e cartella con thumbline

    Ciao ragazzi,

    perdonatemi se rompo di sabato ma spero che tanti di voi come me siano online a lavorare...

    ho un problema che non riesco a risolvere per la gestione multipla delle immagini.

    vi spiego meglio....

    ho uno script che inserisce nel db il percorso di un file e contemporaneamente lo inserisce anche in una cartella creando sia la thumbiline che l'immagine grande ora ho la necessità di fare in modo che lo script carichi contemporaneamente 4 immagini e nel caso qualcuna manchi la sostituisca con una di default. Posto lo scrit funzionante per un solo file.

    tabella database

    codice:
    -- 
    -- Struttura della tabella `immagini`
    -- 
    
    CREATE TABLE `immagini` (
      `idimmagini` int(11) NOT NULL auto_increment,
      `big` varchar(45) collate latin1_general_ci default NULL,
      `thumbs` varchar(45) collate latin1_general_ci default NULL,
      `rand_name` varchar(45) collate latin1_general_ci default NULL,
      PRIMARY KEY  (`idimmagini`)
    );
    upload.php

    Codice PHP:
    <?php

           
    include("config.php");

           include(
    'connessione.php');

           
    //if the for has submittedd
           
    if (isset($_POST['upForm'])){

           
    $file_type $_FILES['imgfile']['type'];
           
    $file_name $_FILES['imgfile']['name'];
           
    $file_size $_FILES['imgfile']['size'];
           
    $file_tmp $_FILES['imgfile']['tmp_name'];
           
    //$descrizione = $_POST['descrizione'];

           //check if you have selected a file.
           
    if(!is_uploaded_file($file_tmp)){
              
           
    header("Location: upload.php"); /* Redirect browser */
              
           
    exit(); //exit the script and don't do anything else.
           
    }

           
    //check file extension
           
    $ext strrchr($file_name,'.');
           
    $ext strtolower($ext);
           if ((
    $extlimit == "yes") && (!in_array($ext,$limitedext))) {
              echo 
    "Wrong file extension.  
    --<a href=\"
    $_SERVER[PHP_SELF]\">back</a>";
              exit();
           }
           
    //get the file extension.
           
    $getExt explode ('.'$file_name);
           
    $file_ext $getExt[count($getExt)-1];

           
    //create a random file name
           
    $rand_name md5(time());
           
    $rand_namerand(0,999999999);
           
    //get the new width variable.
           
    $ThumbWidth $img_thumb_width;

           
    //keep image type
           
    if($file_size){
              if(
    $file_type == "image/pjpeg" || $file_type == "image/jpeg"){
                   
    $new_img imagecreatefromjpeg($file_tmp);
               }elseif(
    $file_type == "image/x-png" || $file_type == "image/png"){
                   
    $new_img imagecreatefrompng($file_tmp);
               }elseif(
    $file_type == "image/gif"){
                   
    $new_img imagecreatefromgif($file_tmp);
               }
               
    //list width and height and keep height ratio.
               
    list($width$height) = getimagesize($file_tmp);
               
    $imgratio=$width/$height;
               if (
    $imgratio>1){
                  
    $newwidth $ThumbWidth;
                  
    $newheight $ThumbWidth/$imgratio;
               }else{
                     
    $newheight $ThumbWidth;
                     
    $newwidth $ThumbWidth*$imgratio;
               }
               
    //function for resize image.
               
    if (function_exists(imagecreatetruecolor)){
               
    $resized_img imagecreatetruecolor($newwidth,$newheight);
               }else{
                     die(
    "Error: Please make sure you have GD library ver 2+");
               }
               
    imagecopyresized($resized_img$new_img0000$newwidth$newheight$width$height);
               
    //save image
               
    ImageJpeg ($resized_img,"$path_thumbs/$rand_name.$file_ext");
               
    ImageDestroy ($resized_img);
               
    ImageDestroy ($new_img);
               
    //print message
               //echo "
    Image Thumb: <a href=\"$path_thumbs/$rand_name.$file_ext\">$path_thumbs/$rand_name.$file_ext</a>";
            }

            
    //upload the big image
            
    move_uploaded_file ($file_tmp"$path_big/$rand_name.$file_ext");

            
    //echo "
    Image Big: <a href=\"$path_big/$rand_name.$file_ext\">$path_big/$rand_name.$file_ext</a>";

            
    //echo "

    --<a href=\"$_SERVER[PHP_SELF]\">back</a>";

            
    //echo "$rand_name.$file_ext";

            
    $query "INSERT INTO `immagini` (`big`,`thumbs`, `rand_name`) VALUES ('$path_big/$rand_name.$file_ext', '$path_thumbs/$rand_name.$file_ext', '$rand_name')";

            
    /* //test for insert db ok
            echo "$path_big/$rand_name.$file_ext";
            echo "
    ";
            echo "$path_thumbs/$rand_name.$file_ext";
            echo "
    ";
            echo "$descrizione";
            echo "
    ";

            */

            
    $result mysql_query($query) or die("Query failed: ".mysql_error());

            if(
    $result) {
              echo 
    "<div class='err'>

    L'immagine è stata inserita correttamente


    </div>"
    ;
                  echo 
    "<meta http-equiv=refresh content=2;url=upload.php>";
              } else {
                     echo 
    "<div class='err'>
    Errore inserimento immagine.</div>"
    ;
                     }


          }else{ 
    //if the form hasn't been submitted.

          //print the form
          
    echo "

            <form method=\"post\" name=\"upForm\" enctype=\"multipart/form-data\" action=\"
    $_SERVER[PHP_SELF]\">
            

    Pictures:


            <input type='file' name='imgfile[0]' />

            <input type='file' name='imgfile[1]' />


            <input type=\"Submit\" name=\"upForm\" value=\"Upload\" class='submit'>
            </p>
            </form>"
    ;
          }
          
    ?>

  2. #2
    ecco il codic che ho sviluppato in 2 minuti dovrebbe funzionare nn ho testato
    Codice PHP:
    <?php

           
    include("config.php");

           include(
    'connessione.php');

            
    $num_files 4// numero di input che genera per caricare le img
           //if the for has submittedd
           
    if (isset($_POST['upForm'])){
    for (
    $i 1$i <= $num_files$i++) {
           
    $file_type $_FILES['imgfile'.$i]['type'];
           
    $file_name $_FILES['imgfile'.$i]['name'];
           
    $file_size $_FILES['imgfile'.$i]['size'];
           
    $file_tmp $_FILES['imgfile'.$i]['tmp_name'];
           
    //$descrizione = $_POST['descrizione'];

           //check if you have selected a file.
           
    if(!is_uploaded_file($file_tmp)){
              
           
    header("Location: upload.php"); /* Redirect browser */
           /* qui invece dell header e dell'exit metti il codice sql che inserisce nel db tutte le info e percorso all'img di default di cui te parlavi */
              
           
    exit(); //exit the script and don't do anything else.
           
    }

           
    //check file extension
           
    $ext strrchr($file_name,'.');
           
    $ext strtolower($ext);
           if ((
    $extlimit == "yes") && (!in_array($ext,$limitedext))) {
              echo 
    "Wrong file extension.  
    --<a href=\"
    $_SERVER[PHP_SELF]\">back</a>";
              exit();
           }
           
    //get the file extension.
           
    $getExt explode ('.'$file_name);
           
    $file_ext $getExt[count($getExt)-1];

           
    //create a random file name
           
    $rand_name md5(time());
           
    $rand_namerand(0,999999999);
           
    //get the new width variable.
           
    $ThumbWidth $img_thumb_width;

           
    //keep image type
           
    if($file_size){
              if(
    $file_type == "image/pjpeg" || $file_type == "image/jpeg"){
                   
    $new_img imagecreatefromjpeg($file_tmp);
               }elseif(
    $file_type == "image/x-png" || $file_type == "image/png"){
                   
    $new_img imagecreatefrompng($file_tmp);
               }elseif(
    $file_type == "image/gif"){
                   
    $new_img imagecreatefromgif($file_tmp);
               }
               
    //list width and height and keep height ratio.
               
    list($width$height) = getimagesize($file_tmp);
               
    $imgratio=$width/$height;
               if (
    $imgratio>1){
                  
    $newwidth $ThumbWidth;
                  
    $newheight $ThumbWidth/$imgratio;
               }else{
                     
    $newheight $ThumbWidth;
                     
    $newwidth $ThumbWidth*$imgratio;
               }
               
    //function for resize image.
               
    if (function_exists(imagecreatetruecolor)){
               
    $resized_img imagecreatetruecolor($newwidth,$newheight);
               }else{
                     die(
    "Error: Please make sure you have GD library ver 2+");
               }
               
    imagecopyresized($resized_img$new_img0000$newwidth$newheight$width$height);
               
    //save image
               
    ImageJpeg ($resized_img,"$path_thumbs/$rand_name.$file_ext");
               
    ImageDestroy ($resized_img);
               
    ImageDestroy ($new_img);
               
    //print message
               //echo "
    Image Thumb: <a href=\"$path_thumbs/$rand_name.$file_ext\">$path_thumbs/$rand_name.$file_ext</a>";
            }

            
    //upload the big image
            
    move_uploaded_file ($file_tmp"$path_big/$rand_name.$file_ext");

            
    //echo "
    Image Big: <a href=\"$path_big/$rand_name.$file_ext\">$path_big/$rand_name.$file_ext</a>";

            
    //echo "

    --<a href=\"$_SERVER[PHP_SELF]\">back</a>";

            
    //echo "$rand_name.$file_ext";

            
    $query "INSERT INTO `immagini` (`big`,`thumbs`, `rand_name`) VALUES ('$path_big/$rand_name.$file_ext', '$path_thumbs/$rand_name.$file_ext', '$rand_name')";

            
    /* //test for insert db ok
            echo "$path_big/$rand_name.$file_ext";
            echo "
    ";
            echo "$path_thumbs/$rand_name.$file_ext";
            echo "
    ";
            echo "$descrizione";
            echo "
    ";

            */

            
    $result mysql_query($query) or die("Query failed: ".mysql_error());

            if(
    $result) {
              echo 
    "<div class='err'>

    L'immagine "
    .$file_name." è stata inserita correttamente


    </div>"
    ;
                  echo 
    "<meta http-equiv=refresh content=2;url=upload.php>";
              } else {
                     echo 
    "<div class='err'>
    Errore inserimento immagine.</div>"
    ;
                     }

    }
    // chiusura ciclo for
          
    }else{ //if the form hasn't been submitted.

          //print the form
          
    echo "

            <form method=\"post\" name=\"upForm\" enctype=\"multipart/form-data\" action=\"
    $_SERVER[PHP_SELF]\">
            

    Pictures:

    "
    ;

    for (
    $i 1$i <= $num_files$i++) {
    echo 
    "</td><td><input type=\"file\" name=\"imgfile".$i."\" />
    "
    ;
    }
    echo 
    "


            <input type=\"Submit\" name=\"upForm\" value=\"Upload\" class='submit'>
            </p>
            </form>"
    ;
          }
          
    ?>

  3. #3
    grazie SuperSavio, funzions perfettamente.

  4. #4
    Problema... mi sn accorto ora che cosi come fatto lo script non va bene... il problema sta nel fatto che le immagini inserite devono avede un solo id, cioè devono far parte della stessa riga cosi invece mi ritrovo 4 righe... mi spiego quando l'utente inserisce i dati deve poter inserire anche 4 immagini ma tutte nella stessa riga... avrò quindi big1, big2, big3, big4... come faccio ora

  5. #5
    basta che la } che chiude il ciclo for la metti prima della query poi all'interno del ciclo alla fine cioè prima di } metti un'array per ogni var che ti serve cioè
    Codice PHP:
    <?php

           
    include("config.php");

           include(
    'connessione.php');

            
    $num_files 4// numero di input che genera per caricare le img
           //if the for has submittedd
           
    if (isset($_POST['upForm'])){
    for (
    $i 1$i <= $num_files$i++) {
           
    $file_type $_FILES['imgfile'.$i]['type'];
           
    $file_name $_FILES['imgfile'.$i]['name'];
           
    $file_size $_FILES['imgfile'.$i]['size'];
           
    $file_tmp $_FILES['imgfile'.$i]['tmp_name'];
           
    //$descrizione = $_POST['descrizione'];

           //check if you have selected a file.
           
    if(!is_uploaded_file($file_tmp)){
              
           
    header("Location: upload.php"); /* Redirect browser */
           /* qui invece dell header e dell'exit metti il codice sql che inserisce nel db tutte le info e percorso all'img di default di cui te parlavi */
              
           
    exit(); //exit the script and don't do anything else.
           
    }

           
    //check file extension
           
    $ext strrchr($file_name,'.');
           
    $ext strtolower($ext);
           if ((
    $extlimit == "yes") && (!in_array($ext,$limitedext))) {
              echo 
    "Wrong file extension.  
    --<a href=\"
    $_SERVER[PHP_SELF]\">back</a>";
              exit();
           }
           
    //get the file extension.
           
    $getExt explode ('.'$file_name);
           
    $file_ext $getExt[count($getExt)-1];

           
    //create a random file name
           
    $rand_name md5(time());
           
    $rand_namerand(0,999999999);
           
    //get the new width variable.
           
    $ThumbWidth $img_thumb_width;

           
    //keep image type
           
    if($file_size){
              if(
    $file_type == "image/pjpeg" || $file_type == "image/jpeg"){
                   
    $new_img imagecreatefromjpeg($file_tmp);
               }elseif(
    $file_type == "image/x-png" || $file_type == "image/png"){
                   
    $new_img imagecreatefrompng($file_tmp);
               }elseif(
    $file_type == "image/gif"){
                   
    $new_img imagecreatefromgif($file_tmp);
               }
               
    //list width and height and keep height ratio.
               
    list($width$height) = getimagesize($file_tmp);
               
    $imgratio=$width/$height;
               if (
    $imgratio>1){
                  
    $newwidth $ThumbWidth;
                  
    $newheight $ThumbWidth/$imgratio;
               }else{
                     
    $newheight $ThumbWidth;
                     
    $newwidth $ThumbWidth*$imgratio;
               }
               
    //function for resize image.
               
    if (function_exists(imagecreatetruecolor)){
               
    $resized_img imagecreatetruecolor($newwidth,$newheight);
               }else{
                     die(
    "Error: Please make sure you have GD library ver 2+");
               }
               
    imagecopyresized($resized_img$new_img0000$newwidth$newheight$width$height);
               
    //save image
               
    ImageJpeg ($resized_img,"$path_thumbs/$rand_name.$file_ext");
               
    ImageDestroy ($resized_img);
               
    ImageDestroy ($new_img);
               
    //print message
               //echo "
    Image Thumb: <a href=\"$path_thumbs/$rand_name.$file_ext\">$path_thumbs/$rand_name.$file_ext</a>";
            }

            
    //upload the big image
            
    move_uploaded_file ($file_tmp"$path_big/$rand_name.$file_ext");

            
    //echo "
    Image Big: <a href=\"$path_big/$rand_name.$file_ext\">$path_big/$rand_name.$file_ext</a>";

            
    //echo "

    --<a href=\"$_SERVER[PHP_SELF]\">back</a>";

            
    //echo "$rand_name.$file_ext";
    $big[] = $path_big."/".$rand_name.$file_ext;
    $thumbs[] = $path_thumbs."/".$rand_name.$file_ext;
    $randname[] = $rand_name;
    }
    // chiusura ciclo for
            
    $query "INSERT INTO `immagini` (`big`,`thumbs`, `rand_name`) VALUES ($big$thumbs$randname)";

            
    /* //test for insert db ok
            echo "$path_big/$rand_name.$file_ext";
            echo "
    ";
            echo "$path_thumbs/$rand_name.$file_ext";
            echo "
    ";
            echo "$descrizione";
            echo "
    ";

            */

            
    $result mysql_query($query) or die("Query failed: ".mysql_error());

            if(
    $result) {
              echo 
    "<div class='err'>

    L'immagine "
    .$file_name." è stata inserita correttamente


    </div>"
    ;
                  echo 
    "<meta http-equiv=refresh content=2;url=upload.php>";
              } else {
                     echo 
    "<div class='err'>
    Errore inserimento immagine.</div>"
    ;
                     }

          }else{ 
    //if the form hasn't been submitted.

          //print the form
          
    echo "

            <form method=\"post\" name=\"upForm\" enctype=\"multipart/form-data\" action=\"
    $_SERVER[PHP_SELF]\">
            

    Pictures:

    "
    ;

    for (
    $i 1$i <= $num_files$i++) {
    echo 
    "</td><td><input type=\"file\" name=\"imgfile".$i."\" />
    "
    ;
    }
    echo 
    "


            <input type=\"Submit\" name=\"upForm\" value=\"Upload\" class='submit'>
            </p>
            </form>"
    ;
          }
          
    ?>

  6. #6
    Ciao Supersavio, grazie per la risposta ma la seconda parte non ho capito come farla...

    quando sno qui:

    Codice PHP:
    $query "INSERT INTO `immagini` (`big`,`thumbs`, `rand_name`) VALUES ($big$thumbs$randname)"
    dovrebbe essere cosi?

    Codice PHP:
    $query "INSERT INTO `immagini` (`big1`,`thumbs1`, `big2`,`thumbs2`, `rand_name`) VALUES ($big1$thumbs1$big2$thumbs2$randname)"
    giusto?

  7. #7
    nono....il codice che ti ho postato è già modificato

    quando inserisce i dati nel db fa un solo record ( riga ) con dentro
    ad esempio nome img

    cielo.jpg,paradiso.gif,mare.png,terra.gif


  8. #8
    Ciao SuperSavio,

    in realtà dovrebbe fare in modo di popolare un file per cella in modo da recuperarli dopo singolarmente come variabile per impaginarli in maniera corretta.. il db corretto è questo:

    CREATE TABLE `immagini` (
    `idimmagini` int(11) NOT NULL auto_increment,
    `big1` varchar(45) collate latin1_general_ci default NULL,
    `thumbs1` varchar(45) collate latin1_general_ci default NULL,
    `big2` varchar(45) collate latin1_general_ci default NULL,
    `thumbs2` varchar(45) collate latin1_general_ci default NULL,
    `rand_name` varchar(45) collate latin1_general_ci default NULL,
    PRIMARY KEY (`idimmagini`)
    );

  9. #9
    bhè allora dovresti avere 24 campi uguali con l'unica differenza che alla fine di ogniuno metti il numero cioè
    `idimmagini1` int(11) NOT NULL auto_increment,
    `big1` varchar(45) collate latin1_general_ci default NULL,
    `thumbs1` varchar(45) collate latin1_general_ci default NULL,
    `rand_name1` varchar(45) collate latin1_general_ci default NULL,
    `idimmagini2` int(11) NOT NULL auto_increment,
    `big2` varchar(45) collate latin1_general_ci default NULL,
    `thumbs2` varchar(45) collate latin1_general_ci default NULL,
    `rand_name2` varchar(45) collate latin1_general_ci default NULL,
    `idimmagini3` int(11) NOT NULL auto_increment,
    `big3` varchar(45) collate latin1_general_ci default NULL,
    `thumbs3` varchar(45) collate latin1_general_ci default NULL,
    `rand_name3` varchar(45) collate latin1_general_ci default NULL,
    `idimmagini4` int(11) NOT NULL auto_increment,
    `big4` varchar(45) collate latin1_general_ci default NULL,
    `thumbs4` varchar(45) collate latin1_general_ci default NULL,
    `rand_name4` varchar(45) collate latin1_general_ci default NULL,

    in modo che fa 1 record con all'interno le informazioni dei singoli file
    poi il codice diventerebbe così

    Codice PHP:
    <?php

           
    include("config.php");

           include(
    'connessione.php');

            
    $num_files 4// numero di input che genera per caricare le img
           //if the for has submittedd
           
    if (isset($_POST['upForm'])){
    for (
    $i 1$i <= $num_files$i++) {
           
    $file_type $_FILES['imgfile'.$i]['type'];
           
    $file_name $_FILES['imgfile'.$i]['name'];
           
    $file_size $_FILES['imgfile'.$i]['size'];
           
    $file_tmp $_FILES['imgfile'.$i]['tmp_name'];
           
    //$descrizione = $_POST['descrizione'];

           //check if you have selected a file.
           
    if(!is_uploaded_file($file_tmp)){
              
           
    header("Location: upload.php"); /* Redirect browser */
           /* qui invece dell header e dell'exit metti il codice sql che inserisce nel db tutte le info e percorso all'img di default di cui te parlavi */
              
           
    exit(); //exit the script and don't do anything else.
           
    }

           
    //check file extension
           
    $ext strrchr($file_name,'.');
           
    $ext strtolower($ext);
           if ((
    $extlimit == "yes") && (!in_array($ext,$limitedext))) {
              echo 
    "Wrong file extension.  
    --<a href=\"
    $_SERVER[PHP_SELF]\">back</a>";
              exit();
           }
           
    //get the file extension.
           
    $getExt explode ('.'$file_name);
           
    $file_ext $getExt[count($getExt)-1];

           
    //create a random file name
           
    $rand_name md5(time());
           
    $rand_namerand(0,999999999);
           
    //get the new width variable.
           
    $ThumbWidth $img_thumb_width;

           
    //keep image type
           
    if($file_size){
              if(
    $file_type == "image/pjpeg" || $file_type == "image/jpeg"){
                   
    $new_img imagecreatefromjpeg($file_tmp);
               }elseif(
    $file_type == "image/x-png" || $file_type == "image/png"){
                   
    $new_img imagecreatefrompng($file_tmp);
               }elseif(
    $file_type == "image/gif"){
                   
    $new_img imagecreatefromgif($file_tmp);
               }
               
    //list width and height and keep height ratio.
               
    list($width$height) = getimagesize($file_tmp);
               
    $imgratio=$width/$height;
               if (
    $imgratio>1){
                  
    $newwidth $ThumbWidth;
                  
    $newheight $ThumbWidth/$imgratio;
               }else{
                     
    $newheight $ThumbWidth;
                     
    $newwidth $ThumbWidth*$imgratio;
               }
               
    //function for resize image.
               
    if (function_exists(imagecreatetruecolor)){
               
    $resized_img imagecreatetruecolor($newwidth,$newheight);
               }else{
                     die(
    "Error: Please make sure you have GD library ver 2+");
               }
               
    imagecopyresized($resized_img$new_img0000$newwidth$newheight$width$height);
               
    //save image
               
    ImageJpeg ($resized_img,"$path_thumbs/$rand_name.$file_ext");
               
    ImageDestroy ($resized_img);
               
    ImageDestroy ($new_img);
               
    //print message
               //echo "
    Image Thumb: <a href=\"$path_thumbs/$rand_name.$file_ext\">$path_thumbs/$rand_name.$file_ext</a>";
            }

            
    //upload the big image
            
    move_uploaded_file ($file_tmp"$path_big/$rand_name.$file_ext");

            
    //echo "
    Image Big: <a href=\"$path_big/$rand_name.$file_ext\">$path_big/$rand_name.$file_ext</a>";

            
    //echo "

    --<a href=\"$_SERVER[PHP_SELF]\">back</a>";

            
    //echo "$rand_name.$file_ext";
    $big[] = $path_big."/".$rand_name.$file_ext;
    $thumbs[] = $path_thumbs."/".$rand_name.$file_ext;
    $randname[] = $rand_name;

            
    $query "INSERT INTO `immagini` (`big$i`,`thumbs$i`, `rand_name$i`) VALUES ($big$thumbs$randname)";

            
    /* //test for insert db ok
            echo "$path_big/$rand_name.$file_ext";
            echo "
    ";
            echo "$path_thumbs/$rand_name.$file_ext";
            echo "
    ";
            echo "$descrizione";
            echo "
    ";

            */

            
    $result mysql_query($query) or die("Query failed: ".mysql_error());

            if(
    $result) {
              echo 
    "<div class='err'>

    L'immagine "
    .$file_name." è stata inserita correttamente


    </div>"
    ;
                  echo 
    "<meta http-equiv=refresh content=2;url=upload.php>";
              } else {
                     echo 
    "<div class='err'>
    Errore inserimento immagine.</div>"
    ;
                     }
    }
    // chiusura ciclo for
          
    }else{ //if the form hasn't been submitted.

          //print the form
          
    echo "

            <form method=\"post\" name=\"upForm\" enctype=\"multipart/form-data\" action=\"
    $_SERVER[PHP_SELF]\">
            

    Pictures:

    "
    ;

    for (
    $i 1$i <= $num_files$i++) {
    echo 
    "</td><td><input type=\"file\" name=\"imgfile".$i."\" />
    "
    ;
    }
    echo 
    "


            <input type=\"Submit\" name=\"upForm\" value=\"Upload\" class='submit'>
            </p>
            </form>"
    ;
          }
          
    ?>
    l'unica cosa devi vedere come gestire l'id immagine delle altre img inserite all'interno di 1record

  10. #10
    ciao Supersavio,

    ricevo questo errore

    codice:
    Query failed: Unknown column 'Array' in 'field list'

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.