Comunidad de diseño web y desarrollo en internet online

Insertar 2 o mas fotos en un mismo registro

Citar            
MensajeEscrito el 08 Ago 2012 07:30 pm
hola buen dia mi nombre es jose les cuento encontre muy interesante este foro.
Soy nuevo en esto de la programacion php y bueno tengo un problema en mi codigo
lo que quiero es poder insertar 2 fotos o mas en un solo registro y no se como hacerlo,
llevo dian intentando y nada, inserte otro campo que se llama imagesll para poder guardar alli la otro foto
y que al momento de instertar la informacion de tal persona haga una busqueda y que me muestre las imagenes de el solamenete les dejo el codigo para que lo chequen.
les agradeceria mucho que me ayuden gracias.

este codigo es de mi upload.php

<?php define ('MAX_FILE_SIZE', 1024 * 150); ?>
<?php require_once('Connections/conn.php');
require_once('menu.html');
?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}

$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}

$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "uploadImage")) {

// make sure it's a genuine file upload
if (is_uploaded_file($_FILES['image']['tmp_name'])) {

// replace any spaces in original filename with underscores
$filename = str_replace(' ', '_', $_FILES['image']['name']);
// get the MIME type
$mimetype = $_FILES['image']['type'];
if ($mimetype == 'image/pjpeg') {
$mimetype= 'image/jpeg';
}
// create an array of permitted MIME types
$permitted = array('image/gif', 'image/jpeg', 'image/png');
$ip=$_SERVER['REMOTE_ADDR'];
$cpu=gethostbyaddr($_SERVER['REMOTE_ADDR']);


// upload if file is OK
if (in_array($mimetype, $permitted)
&& $_FILES['image']['size'] > 0
&& $_FILES['image']['size'] <= MAX_FILE_SIZE) {
switch ($_FILES['image']['error']) {
case 0:
// get the file contents
$image = file_get_contents($_FILES['image']['tmp_name']);
// get the width and height
$size = getimagesize($_FILES['image']['tmp_name']);
$width = $size[0];
$height = $size[1];


$insertSQL = sprintf("INSERT INTO dm_images (filename, mimetype, caption, image, width, height, per_nom, per_app, per_apm, ip, cpu) VALUES (%s, %s, %s, %s, %s,%s, %s,%s,%s,%s,%s)",
GetSQLValueString($filename, "text"),
GetSQLValueString($mimetype, "text"),
GetSQLValueString($_POST['caption'], "text"),
GetSQLValueString($image, "text"),
GetSQLValueString($width, "int"),
GetSQLValueString($height, "int"),
GetSQLValueString($_POST['txt_pernom'], "text"),
GetSQLValueString($_POST['txt_perapp'], "text"),
GetSQLValueString($_POST['txt_perapm'], "text"),
GetSQLValueString($ip,"text"),
GetSQLValueString($cpu,"text")
);


mysql_select_db($database_conn, $conn);
$Result1 = mysql_query($insertSQL, $conn) or die(mysql_error());
if ($Result1) {
$result = "$filename guardada con exito.";
} else {
$result = "Error al subir $filename. Por favor intente de nuevo.";
}
break;
case 3:
case 6:
case 7:
case 8:
$result = "Error al subir $filename. Por favor intente de nuevo.";
break;
case 4:
$result = "No ha seleccionado imagen para ser guardada.";
}
} else {
$result = "$filename es demaciado grande o no es una imagen.";
}
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Guardar Registro</title>
<LINK href="example.css" rel="stylesheet" type="text/css">
</head>

<body>
<?php
// if the form has been submitted, display result
if (isset($result)) {
echo "<p><strong>$result</strong></p>";
}
?>
<form action="<?php echo $editFormAction; ?>" method="POST" enctype="multipart/form-data" name="uploadImage" id="uploadImage">
<fieldset>
<legend>Persona Reportada</legend>

<label>&nbsp;&nbsp;&nbsp;&nbsp;Nombre: <input type="text" name="txt_pernom" id="txt_pernom" /></label>
<br />
<label>A. Paterno: <input type="text" name="txt_perapp" id="txt_perapp" /></label>
<label>A. Materno: <input type="text" name="txt_perapm" id="txt_perapm" /></label>
</fieldset>
<input type="hidden" name="MAX_FILE_SIZE" value="<?php echo MAX_FILE_SIZE; ?>" />


<br />
<label for="image">Cargar imagen:</label>
<input type="file" name="image" id="image" />
<label for="image">Cargar imagen:</label>
<input type="file" name="image" id="image" />
<p>
<label for="caption">Descripci&oacute;n:</label>
<textarea name="caption" id="caption"></textarea>
</p>
<p>
<input type="submit" name="upload" id="upload" value="Guardar" />
</p>
<input type="hidden" name="MM_insert" value="uploadImage" />
</form>
</body>
</html>




este es del archivo imprimir.php


<?php require_once('Connections/conn.php');
require_once('menu.html');
?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}

$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}

mysql_select_db($database_conn, $conn);
$ip=$_SERVER['REMOTE_ADDR'];
$cpu=gethostbyaddr($_SERVER['REMOTE_ADDR']);

$query_rsImpresion = "SELECT image_id, caption, fexa, per_nom, per_app, per_apm, FROM dm_images WHERE dm_images.fexa > '2011-08-02' + '00:00:00' and dm_images.fexa< '2011-08-02' + '59:59:59'";
$rsImpresion = mysql_query($query_rsImpresion, $conn) or die(mysql_error());
$row_rsImpresion = mysql_fetch_assoc($rsImpresion);
$totalRows_rsImpresion = mysql_num_rows($rsImpresion);mysql_select_db($database_conn, $conn);
$query_rsImpresion = "SELECT image_id, caption, fexa, per_nom, per_app, per_apm, FROM dm_images WHERE ip='".$ip."' and cpu='".$cpu."' and dm_images.fexa > CONCAT(YEAR(NOW()),'-',MONTH(NOW()),'-',DAY(NOW()),' ' ,'00:00:00')";
$rsImpresion = mysql_query($query_rsImpresion, $conn) or die(mysql_error());
$row_rsImpresion = mysql_fetch_assoc($rsImpresion);
$totalRows_rsImpresion = mysql_num_rows($rsImpresion);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Impresion</title>
<LINK href="example.css" rel="stylesheet" type="text/css">

</head>

<body>
<?php do { ?>
<table width="200" border="1" class="alternate_rows">
<tr>
<td><?php echo substr($row_rsImpresion['fexa'],8,2)."-".substr($row_rsImpresion['fexa'],5,2)."-".substr($row_rsImpresion['fexa'],0,4)." ".substr($row_rsImpresion['fexa'],11,8); ?></td>
<td>&nbsp;</td>
<td><?php echo ucfirst($row_rsImpresion['per_nom']); ?><br />
<?php echo ucfirst($row_rsImpresion['per_app']); ?>&nbsp;&nbsp;<?php echo ucfirst($row_rsImpresion['per_apm']); ?><br /></td>
</tr>
<tr>
<td colspan="3"><img src="show.php?image_id=<?php echo $row_rsImpresion['image_id']; ?>" width="360" height="240" alt="img" /><img src="show.php?image_id=<?php echo $row_rsImpresion['image_id']; ?>" width="360" height="240" alt="img" /></td>
<td colspan="3">&nbsp;</td>
</tr>
<tr>
<td colspan="3"><?php echo ucfirst($row_rsImpresion['caption']); ?></td>
</tr>
</table>

<br />
<br />
<br />
<?php } while ($row_rsImpresion = mysql_fetch_assoc($rsImpresion)); ?>
</body>
</html>
<?php
mysql_free_result($rsImpresion);
?>

Por joseqsource

2 de clabLevel



 

firefox
Citar            
MensajeEscrito el 09 Ago 2012 03:06 pm
mm, primero una recomendacion , pon tu codigo que publiques en foros con las etiquetas bbcode de [code] tu codigo[/code] a muchos les cuesta leer codigo sin formato y peor para los que usan un mobil o un tablet desde donde contestan los topics,

Código PHP :

<?php define ('MAX_FILE_SIZE', 1024 * 150); ?>
<?php require_once('Connections/conn.php');
require_once('menu.html');
?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
   if (PHP_VERSION < 6) {
      $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
   }

   $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

   switch ($theType) {
      case "text":
         $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
      case "long":
      case "int":
         $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
      case "double":
         $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
      case "date":
         $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
      case "defined":
         $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
   }
   return $theValue;
}
}

$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
   $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "uploadImage")) {

   // make sure it's a genuine file upload
   if (is_uploaded_file($_FILES['image']['tmp_name'])) {

      // replace any spaces in original filename with underscores
      $filename = str_replace(' ', '_', $_FILES['image']['name']);
      // get the MIME type
      $mimetype = $_FILES['image']['type'];
      if ($mimetype == 'image/pjpeg') {
         $mimetype= 'image/jpeg';
      }
      // create an array of permitted MIME types
      $permitted = array('image/gif', 'image/jpeg', 'image/png');
      $ip=$_SERVER['REMOTE_ADDR'];
      $cpu=gethostbyaddr($_SERVER['REMOTE_ADDR']);


      // upload if file is OK
      if (in_array($mimetype, $permitted)
      && $_FILES['image']['size'] > 0
      && $_FILES['image']['size'] <= MAX_FILE_SIZE) {
         switch ($_FILES['image']['error']) {
            case 0:
               // get the file contents
               $image = file_get_contents($_FILES['image']['tmp_name']);
               // get the width and height
               $size = getimagesize($_FILES['image']['tmp_name']);
               $width = $size[0];
               $height = $size[1];


               $insertSQL = sprintf("INSERT INTO dm_images (filename, mimetype, caption, image, width, height, per_nom, per_app, per_apm, ip, cpu) VALUES (%s, %s, %s, %s, %s,%s, %s,%s,%s,%s,%s)",
                  GetSQLValueString($filename, "text"),
                  GetSQLValueString($mimetype, "text"),
                  GetSQLValueString($_POST['caption'], "text"),
                  GetSQLValueString($image, "text"),
                  GetSQLValueString($width, "int"),
                  GetSQLValueString($height, "int"),
                  GetSQLValueString($_POST['txt_pernom'], "text"),
                  GetSQLValueString($_POST['txt_perapp'], "text"),
                  GetSQLValueString($_POST['txt_perapm'], "text"),
                  GetSQLValueString($ip,"text"),
                  GetSQLValueString($cpu,"text")
               );


               mysql_select_db($database_conn, $conn);
               $Result1 = mysql_query($insertSQL, $conn) or die(mysql_error());
               if ($Result1) {
                  $result = "$filename guardada con exito.";
               } else {
                  $result = "Error al subir $filename. Por favor intente de nuevo.";
               }
            break;
            case 3:
            case 6:
            case 7:
            case 8:
               $result = "Error al subir $filename. Por favor intente de nuevo.";
            break;
            case 4:
               $result = "No ha seleccionado imagen para ser guardada.";
         }
      } else {
         $result = "$filename es demaciado grande o no es una imagen.";
      }
   }
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Guardar Registro</title>
<LINK href="example.css" rel="stylesheet" type="text/css">
</head>

<body>
<?php
// if the form has been submitted, display result
if (isset($result)) {
   echo "<p><strong>$result</strong></p>";
}
?>
   <form action="<?php echo $editFormAction; ?>" method="POST" enctype="multipart/form-data" name="uploadImage" id="uploadImage">
   <fieldset>
      <legend>Persona Reportada</legend>

      <label>&nbsp;&nbsp;&nbsp;&nbsp;Nombre: <input type="text" name="txt_pernom" id="txt_pernom" /></label>
      <br />
      <label>A. Paterno: <input type="text" name="txt_perapp" id="txt_perapp" /></label>
      <label>A. Materno: <input type="text" name="txt_perapm" id="txt_perapm" /></label>
   </fieldset>
   <input type="hidden" name="MAX_FILE_SIZE" value="<?php echo MAX_FILE_SIZE; ?>" />


   <br />
   <label for="image">Cargar imagen:</label>
   <input type="file" name="image" id="image" />
   <label for="image">Cargar imagen:</label>
   <input type="file" name="image" id="image" />
   <p>
   <label for="caption">Descripci&oacute;n:</label>
   <textarea name="caption" id="caption"></textarea>
   </p>
   <p>
   <input type="submit" name="upload" id="upload" value="Guardar" />
   </p>
   <input type="hidden" name="MM_insert" value="uploadImage" />
   </form>
</body>
</html>

imprimir.php

Código PHP :

<?php require_once('Connections/conn.php');
require_once('menu.html');
?>
<?php
if (!function_exists("GetSQLValueString")) {
   function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
   {
      if (PHP_VERSION < 6) {
         $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      }

      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

      switch ($theType) {
         case "text":
            $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
         break;
         case "long":
         case "int":
            $theValue = ($theValue != "") ? intval($theValue) : "NULL";
         break;
         case "double":
            $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
         break;
         case "date":
            $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
         break;
         case "defined":
            $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
         break;
      }
      return $theValue;
   }
}

mysql_select_db($database_conn, $conn);
$ip=$_SERVER['REMOTE_ADDR'];
$cpu=gethostbyaddr($_SERVER['REMOTE_ADDR']);

$query_rsImpresion = "SELECT image_id, caption, fexa, per_nom, per_app, per_apm, FROM dm_images WHERE dm_images.fexa > '2011-08-02' + '00:00:00' and dm_images.fexa< '2011-08-02' + '59:59:59'";
$rsImpresion = mysql_query($query_rsImpresion, $conn) or die(mysql_error());
$row_rsImpresion = mysql_fetch_assoc($rsImpresion);
$totalRows_rsImpresion = mysql_num_rows($rsImpresion);mysql_select_db($database_conn, $conn);
$query_rsImpresion = "SELECT image_id, caption, fexa, per_nom, per_app, per_apm, FROM dm_images WHERE ip='".$ip."' and cpu='".$cpu."' and dm_images.fexa > CONCAT(YEAR(NOW()),'-',MONTH(NOW()),'-',DAY(NOW()),' ' ,'00:00:00')";
$rsImpresion = mysql_query($query_rsImpresion, $conn) or die(mysql_error());
$row_rsImpresion = mysql_fetch_assoc($rsImpresion);
$totalRows_rsImpresion = mysql_num_rows($rsImpresion);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Impresion</title>
<LINK href="example.css" rel="stylesheet" type="text/css">

</head>

<body>
<?php do { ?>
<table width="200" border="1" class="alternate_rows">
<tr>
<td><?php echo substr($row_rsImpresion['fexa'],8,2)."-".substr($row_rsImpresion['fexa'],5,2)."-".substr($row_rsImpresion['fexa'],0,4)." ".substr($row_rsImpresion['fexa'],11,8); ?></td>
<td>&nbsp;</td>
<td><?php echo ucfirst($row_rsImpresion['per_nom']); ?><br />
<?php echo ucfirst($row_rsImpresion['per_app']); ?>&nbsp;&nbsp;<?php echo ucfirst($row_rsImpresion['per_apm']); ?><br /></td>
</tr>
<tr>
<td colspan="3"><img src="show.php?image_id=<?php echo $row_rsImpresion['image_id']; ?>" width="360" height="240" alt="img" /><img src="show.php?image_id=<?php echo $row_rsImpresion['image_id']; ?>" width="360" height="240" alt="img" /></td>
<td colspan="3">&nbsp;</td>
</tr>
<tr>
<td colspan="3"><?php echo ucfirst($row_rsImpresion['caption']); ?></td>
</tr>
</table>

<br />
<br />
<br />
<?php } while ($row_rsImpresion = mysql_fetch_assoc($rsImpresion)); ?>
</body>
</html>
<?php
mysql_free_result($rsImpresion);
?> 

Por tuadmin

Claber

598 de clabLevel



Genero:Masculino  

firefox
Citar            
MensajeEscrito el 09 Ago 2012 03:12 pm
y con respecto a tu duda bueno por lo vsito manejas dreamweaver, bueno yo te recomendaria que crees una tabla en mysql especial que contenga solo las imagenes y lo identifiques con un ID como una idea abstracta seria asi

Código :

-----------------------------------------------------
|    ID   +   id_pertenece     +     image           |
-----------------------------------------------------
     1    +     pepe           +  naked_pepe.jpg
     2    +     pepe           +  neked_wife_pep.jpg
     3    +     pepe           +  maked_example.jpg
     4    +     juan           +  wife_pepe.png
     5    +     juan           +  wife_juan.png


ya luego para insertar te sera mas facil, pero lo mas rapido ahora es como lo estas haciendo con otro campo como image2,

Por tuadmin

Claber

598 de clabLevel



Genero:Masculino  

firefox
Citar            
MensajeEscrito el 09 Ago 2012 04:21 pm
hola muchas gracias por tu ayuda pero sigo teniendo problemas ya que agregue el campo imagesll a la tabla fm_images y me quedo asi:

archivo upload


$insertSQL = sprintf("INSERT INTO dm_images (filename, mimetype, caption, image, width, height, per_nom, per_app, per_apm, ip, cpu, imagesll) VALUES (%s, %s, %s, %s, %s,%s, %s,%s,%s,%s,%s,%s)",
GetSQLValueString($filename, "text"),
GetSQLValueString($mimetype, "text"),
GetSQLValueString($_POST['caption'], "text"),
GetSQLValueString($image, "text"),
GetSQLValueString($width, "int"),
GetSQLValueString($height, "int"),
GetSQLValueString($_POST['txt_pernom'], "text"),
GetSQLValueString($_POST['txt_perapp'], "text"),
GetSQLValueString($_POST['txt_perapm'], "text"),
GetSQLValueString($ip,"text"),
GetSQLValueString($cpu,"text"),
GetSQLValueString($imagesll,"text")
);

arvhivo imprimir

Y aqui es donde me pierdo creo no estoy seguro si debo de crear otr consulta te dejo aqui el codigo que hice:

$query_rsImpresion = "SELECT image_id, caption, fexa, per_nom, per_app, per_apm, imagesll, FROM dm_images WHERE dm_images.fexa > '2011-08-02' + '00:00:00' and dm_images.fexa< '2011-08-02' + '59:59:59'";
$rsImpresion = mysql_query($query_rsImpresion, $conn) or die(mysql_error());
$row_rsImpresion = mysql_fetch_assoc($rsImpresion);
$totalRows_rsImpresion = mysql_num_rows($rsImpresion);mysql_select_db($database_conn, $conn);
$query_rsImpresion = "SELECT image_id, caption, fexa, per_nom, per_app, per_apm, imagesll, FROM dm_images WHERE ip='".$ip."' and cpu='".$cpu."' and dm_images.fexa > CONCAT(YEAR(NOW()),'-',MONTH(NOW()),'-',DAY(NOW()),' ' ,'00:00:00')";
$rsImpresion = mysql_query($query_rsImpresion, $conn) or die(mysql_error());
$row_rsImpresion = mysql_fetch_assoc($rsImpresion);
$totalRows_rsImpresion = mysql_num_rows($rsImpresion);


si guarda pero es una sola foto ka otra no la guarda y a l momento de imprimir la foto en la pantalla me tirar error

Por joseqsource

2 de clabLevel



 

firefox
Citar            
MensajeEscrito el 10 Ago 2012 04:07 pm
hola pues ya pude guardar una imagen pero no puedo lograr aun que se impriman en la pantalla
me aparece este erro:

Notice: Undefined variable: imagesll in C:\wamp\www\vigila\upload00.php on line 86
Call Stack
# Time Memory Function Location
1 0.0004 738032 {main}( ) ..\upload00.php:0

Por joseqsource

2 de clabLevel



 

firefox
Citar            
MensajeEscrito el 10 Ago 2012 04:13 pm
hola pues ya pude guardar una imagen la solucion fue que en la linea 74 al momento de insertar el el campo imagesll le habia puesto la "," se la quite y me funciono pero solo se guarda una foto aun me falta que se guarde la segunda y que lo pueda ver impreso en la pantalla.

Notice: Undefined variable: imagesll in C:\wamp\www\vigila\upload00.php on line 86
Call Stack
# Time Memory Function Location
1 0.0004 738032 {main}( ) ..\upload00.php:0[/quote]

Por joseqsource

2 de clabLevel



 

firefox
Citar            
MensajeEscrito el 15 Ago 2012 08:47 pm
bueno tu mensaje de error indica que la variable "imagesll" no esta definida y por eso te da ese error

Por tuadmin

Claber

598 de clabLevel



Genero:Masculino  

firefox

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.