Puzzled wrote:
I hope I'll understand it in the right way.
You browse your website http://www.example.com with a webbrowser. In the
source of it is written by PHP
<img src="/usr/local/yaddayadda/filename.jpg" alt="not found">
So your brwoser is asking the webserver for
But I think it will be not the correct path because it seems to be a
complete unix-path starting from root. PHP will not deliver the picture it
self but only the relative path to it. (or relative path according to your
web root)
Sven Reuter
--
echo '<img src="/usr/local/yaddayadda/filename.jpg" alt="not
found">' ;
>
found">' ;
>
You browse your website http://www.example.com with a webbrowser. In the
source of it is written by PHP
<img src="/usr/local/yaddayadda/filename.jpg" alt="not found">
So your brwoser is asking the webserver for
But I think it will be not the correct path because it seems to be a
complete unix-path starting from root. PHP will not deliver the picture it
self but only the relative path to it. (or relative path according to your
web root)
Sven Reuter
--
Comment