Forum Moderators: coopster
$link = htmlentities("http://$sitename/index.php?action=file&fileid={$fileid['fileid']}");
This is what worked on the others...
$sitename/index.php?id={$id['id']}");
So in my current case I think my problem is with the action=file part, and I also tried references like $fileid = $_GET[fileid]; which I couldn't get work either. Any suggestions would be helpful.
Thank you,
Brad
$link = htmlentities("http://$sitename/index.php?action=file&fileid={$fileid['fileid']}");
It seems your RSS output generator is already coded on the index.php, if I understand you correctly, you are able to use the code as you haven't got the right parameters.
$sitename/index.php?id={$id['id']}");
If this worked for you, on the other URL you should do the following:
$link = htmlentities("http://$sitename/index.php?action=file&id={$fileid['fileid']}");
Try the above, if it does it for you fine, if not you can post part of the code where it is called, and we will help you figure it out.
Habtom
[edited by: Habtom at 10:02 am (utc) on Sep. 23, 2007]