Can someone please help me?
<?php
/ file placed in root c:\phpweb) /
/ image test.gif --> map in my root (c:\phpweb): c:\phpweb\images /
echo "<img src='./images/test.gif'>"; / no display of the image /
/ soundfile in my root (c:\phpweb) /
echo "<bgsound src='sound.mp3'>"; / no output /
/ same image test.gif under my c:\ /
echo "<img src='c:/test.gif'>"; / image displayd /
/ same sound under my c:\
echo "<bgsound src='c:/sound.mp3'>"; / no output /
?>
<bgsound src='c:/sound.mp3'> / output /
I even can call functions, images, soundfiles,... in subdirs of my root. Something I've forgotten to justifie in php.ini?