Ver Mensaje Individual
  #4 (permalink)  
Antiguo 18/08/2011, 09:10
Avatar de Patriarka
Patriarka
 
Fecha de Ingreso: enero-2011
Ubicación: Moreno, Buenos Aires, Argentina
Mensajes: 2.851
Antigüedad: 13 años, 3 meses
Puntos: 288
Respuesta: Duda sobre $_SERVER['PHP_SELF']

para mi tenes muy mal esto:
<form action="$_SERVER['PHP_SELF'] " method="post" enctype="multipart/form-data">
cambialo por:
<form action="<?php echo $_SERVER['PHP_SELF'] ?>" method="post" enctype="multipart/form-data">