I'm not too familiar with how PHP uses paths to resources, but I would try changing your code from:
PHP Code:
echo '<img src="\images/clanfiles/suzerged7.jpg" width="600" height="450">';
To something like this to change your backslash to a front slash like a normal URL would require:
PHP Code:
echo '<img src="/images/clanfiles/suzerged7.jpg" width="600" height="450">';
Let me know if it works.
|