<?php  
  header('Content-Type: application/xml');  
  $tmpFile = 'tmpFile.txt';  
  $val = $_GET["http://rss.news.yahoo.com/rss/us.rss"]; 
  echo ($val); 
  $curlHandle = curl_init($val);  
  $filePointer = fopen($tmpFile, "w");  
  curl_setopt($curlHandle, CURLOPT_FILE, $filePointer);  
  curl_exec($curlHandle);  
  curl_close($curlHandle);  
  fclose($filePointer);  
  $linesArr = file($tmpFile);  
  foreach($linesArr as $eachLine){  
    echo($eachLine);  
  }  
?>

I don't know why this code is not working. Can someone help me

Recommended Answers

All 5 Replies

sorry for that it is realy $val = $_GET["fwd"]

the posted code is to get the content of a web site and save it in a file

Member Avatar for diafol

I followed the link and it doesn't seem to exist.

but should the code on the whole work?
when i run the code with a deffrent url it gives me the error

<b>Notice</b>:  Undefined index: https://www.google.com in <b>C:\Users\spirit\Documents\xampp\htdocs\News-Reader-Code\news-web-code\bridge2.php</b> on line <b>4</b><br />
Member Avatar for diafol

sounds like you are still using the weird key:

$val = $_GET["http://www.google.com"]; 

?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.