If I am parsing an rss feed with php and xml, how can I parse more than one feed using one fopen statement. I am currently storing the feeds in different variables, and my fopen statement looks like this:
$fp=fopen($feedzero, $feedone, $feedtwo, "r")
When I run the code, I get this error:
fopen() expects parameter 4 to be resource, string given
Any help appreciated.