Hi i have an odd problem. I am trying to force files to download by modifying the php headers but my actual problem is that the readfile() function doesn't parse anymore than one url parameter.

eg. readfile('http://localhost/page.mp3?param1=value1&param2=value2');

will give me the error readfile(http://localhost/page.mp3?param1=value1) is forbidden or unavailable. everything past the ampersand (&) is lost.

any solutions?

link|improve this question

40% accept rate
1  
Did you try urlencode before passing the url to readfile? – CaNNaDaRk Aug 30 '11 at 13:02
feedback

1 Answer

up vote 0 down vote accepted

try & instead of your single & character

link|improve this answer
1  
sorry to waste your time but i solved the problem - it was because i was passing the url with parameters as a parameter so that's why it cut off at the & but i'll accept your answer for your time thanks! – Cadell Christo Aug 30 '11 at 13:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.