Buona sera a tutti volevo sapere copo posso risolvere un problema nel menu del mio sito joomla. Il Webmaster si è trasferito in indonesia e mi ha lasciato il sito così www.petiteetoile.it qualcuno sa dirmi come posso fare a risolvere il problema. il codice php del menu è il seguente e non capisco cosa succede... Grazie in Anticipo e buona serata.
$files = array();
chdir('menu');
$dir = opendir('.'); // open the cwd..also do an err check.
while(false != ($file = readdir($dir))) {
if(($file != ".") and ($file != "..") and is_dir($file)) {
$files[] = $file; // put in array.
}
}
natsort($files); // sort.
// print.
foreach($files as $file)
{
$spazio = str_replace(" ","", $file);
$dir2 = str_replace(array("1_","2_","3_","4_","5_","6_","7_","8_","9_"," "),"", $file);
$dir3 = str_replace(array("1_","2_","3_","4_","5_","6_","7_","8_","9_"),"hover_", $spazio);
echo("<a href='./index.php?page=menu/$file/$dir2.php'onfocus='this.blur()'><img src='./menu/$file/$dir2.png'
onmouseover= this.src='./menu/$file/$dir3.png';
onmouseout= this.src='./menu/$file/$dir2.png';></a>");
}
chdir('../');
?>
</li>
</ul>
</div>
$files = array();
chdir('menu');
$dir = opendir('.'); // open the cwd..also do an err check.
while(false != ($file = readdir($dir))) {
if(($file != ".") and ($file != "..") and is_dir($file)) {
$files[] = $file; // put in array.
}
}
natsort($files); // sort.
// print.
foreach($files as $file)
{
$spazio = str_replace(" ","", $file);
$dir2 = str_replace(array("1_","2_","3_","4_","5_","6_","7_","8_","9_"," "),"", $file);
$dir3 = str_replace(array("1_","2_","3_","4_","5_","6_","7_","8_","9_"),"hover_", $spazio);
echo("<a href='./index.php?page=menu/$file/$dir2.php'onfocus='this.blur()'><img src='./menu/$file/$dir2.png'
onmouseover= this.src='./menu/$file/$dir3.png';
onmouseout= this.src='./menu/$file/$dir2.png';></a>");
}
chdir('../');
?>
</li>
</ul>
</div>