- function chemin()
- {
- $a=$_SERVER['PHP_SELF'];
- $b=strrev($a);
- $c=strpos($b,'/');
- $d=substr($b,$c,strlen($b)-$c);
- $e=strrev($d);
- $f=substr_count($e,'/')-1;
- $g='';
- for ($i=0;$i<$f;$i++)
- $g.='../';
- return $g;
- }
function chemin()
{
$a=$_SERVER['PHP_SELF'];
$b=strrev($a);
$c=strpos($b,'/');
$d=substr($b,$c,strlen($b)-$c);
$e=strrev($d);
$f=substr_count($e,'/')-1;
$g='';
for ($i=0;$i<$f;$i++)
$g.='../';
return $g;
}