Ver Mensaje Individual
  #11 (permalink)  
Antiguo 28/05/2016, 12:18
wilson_romero
 
Fecha de Ingreso: diciembre-2015
Mensajes: 369
Antigüedad: 8 años, 4 meses
Puntos: 4
Respuesta: Problema ingresando datos duplicado en un for

creo que tenían razón disculpe el error yace del formulario tesel formulario estaba asi

Código HTML:
Ver original
  1. <input type='file' name='imagen'>

y en realidad va asi
Código HTML:
Ver original
  1. <input type='file' name='imagen[]'>

ahora me arroja este esto errores


Notice: Array to string conversion in C:\xampp\htdocs\room\funciones\post\proceso.php on line 35

Warning: move_uploaded_file() expects parameter 1 to be string, array given in C:\xampp\htdocs\room\funciones\post\proceso.php on line 38


array(1) { ["imagen"]=> array(5) { ["name"]=> array(2) { [0]=> string(5) "b.jpg" [1]=> string(5) "a.jpg" } ["type"]=> array(2) { [0]=> string(10) "image/jpeg" [1]=> string(10) "image/jpeg" } ["tmp_name"]=> array(2) { [0]=> string(24) "C:\xampp\tmp\php165A.tmp" [1]=> string(24) "C:\xampp\tmp\php165B.tmp" } ["error"]=> array(2) { [0]=> int(0) [1]=> int(0) } ["size"]=> array(2) { [0]=> int(39412) [1]=> int(18613) } } }
Notice: Array to string conversion in C:\xampp\htdocs\room\funciones\post\proceso.php on line 35

Warning: move_uploaded_file() expects parameter 1 to be string, array given in C:\xampp\htdocs\room\funciones\post\proceso.php on line 38


array(1) { ["imagen"]=> array(5) { ["name"]=> array(2) { [0]=> string(5) "b.jpg" [1]=> string(5) "a.jpg" } ["type"]=> array(2) { [0]=> string(10) "image/jpeg" [1]=> string(10) "image/jpeg" } ["tmp_name"]=> array(2) { [0]=> string(24) "C:\xampp\tmp\php165A.tmp" [1]=> string(24) "C:\xampp\tmp\php165B.tmp" } ["error"]=> array(2) { [0]=> int(0) [1]=> int(0) } ["size"]=> array(2) { [0]=> int(39412) [1]=> int(18613) } } } El titulo debe tener como minimo 6 caracteres


me imagino que es por lo que dijeron que no es compatible con post lo voy a cambiar a ver que pasa por GET

aunque yo tengo otro formulario por donde envio la variables por metodo post y me funcioan perfecta mente