Ver Mensaje Individual
  #4 (permalink)  
Antiguo 14/12/2010, 19:59
Avatar de carlos_belisario
carlos_belisario
Colaborador
 
Fecha de Ingreso: abril-2010
Ubicación: Venezuela Maracay Aragua
Mensajes: 3.156
Antigüedad: 14 años, 1 mes
Puntos: 461
Respuesta: Variable en formulario...

eso es por tu html el metodo de tu formulario es $_POST por lo que cuando envias no recibes nada ya que estas recibiendo por $_GET el archivo entonces que debes hacer?? hacer una validacion
Código PHP:
Ver original
  1. if(isset($_GET['ftpath'])){
  2.   $ftpath=($_GET['ftpath']);
  3. }
  4. elseif(isset($_POST['ftpath'])){
  5.    $ftpath=($_POST['ftpath']);
  6. }
saludos
__________________
aprende d tus errores e incrementa tu conocimientos
it's not a bug, it's an undocumented feature By @David
php the right way