Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/11/2012, 06:34
webankenovi
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Problema loco de rutas

Código PHP:
Ver original
  1. <?php
  2.  
  3. /*
  4.  
  5. index.php
  6.  
  7. informacion
  8.  
  9. getcwd() http://es.php.net/manual/es/function.getcwd.php
  10.  
  11. realpath() http://es.php.net/manual/es/function.realpath.php
  12.  
  13. */
  14.  
  15.  
  16. $path = getcwd();
  17.  
  18. if( is_dir(realpath('gestion_clientes')) )
  19. {
  20.  $raiz = realpath('gestion_clientes') ;
  21. }
  22. else
  23. {
  24. if(! is_dir($path.'/gestion_clientes'))
  25. {
  26. exit('gestion clientes no es un directorio');
  27. }
  28.  $raiz = $path.'/gestion_clientes';
  29. }
  30.  
  31. require_once $raiz.'/clases/general.php';
  32.  
  33. ?>
  34.  
  35. <form method="POST" action="<?php echo $raiz.'/pagina/inicia_sesion.php'; ?>">
  36. <label>Nombre<input type="text" name="nombre"/></label>
  37. <label>Contraseña<input type="text" name="password"/></label>
  38. <input type="submit" />
  39. </form>

Última edición por webankenovi; 29/12/2012 a las 06:07