I am running into a problem with my news feed file.
I am displaying articles that are located in a directory which is htaccess protected. Now there is the problem that when I try to click on the link that I get the screen that there is a problem with the website. When i copy and paste the URL into a different browser there is no problem with the URL.
Now, I am thinking that it might help if I would open the link in a different window. But how would I code this.
This is the scriptthat doesn't work
{ $tmp .= '<item>' . LF;
$tmp .= '<title>' . utf8Encode( $myrow['aTitle'] ) . '</title>' . LF;
$tmp .= '<link>http://www.mysite.com/premium/premiumarticles_test.php?articleId=' . $myrow['pk_aId'].' </link>' . LF;
$tmp .= '<description>' . utf8Encode( $myrow['aSummary'] ) . '</description>' . LF;
$tmp .= '</item>' . LF;
}
Thank you in advance
Andrea