I have the following code
echo '<tr><td><img src= \"'. $theme[img_url].'/';
if($boardinfo['last_post'] == 'yes')
{
echo 'new.gif\" alt=\"new posts\" />';
}
elseif($boardinfo['last_post'] == 'no')
{
echo 'old.gif\" alt=\"no new posts\" />';
}
But it doesn't seem to be escaping properly, I get this as a result:
The requested URL /forum/\"./theme/default/images/</td was not found on this server.
Any help?