Ajax request using PHP forwarding
<?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
otengkwaku
Junior Poster in Training
92 posts since Mar 2012
Reputation Points: 23
Solved Threads: 1
Skill Endorsements: 8
diafol
Keep Smiling
10,636 posts since Oct 2006
Reputation Points: 1,628
Solved Threads: 1,508
Skill Endorsements: 57
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
otengkwaku
Junior Poster in Training
92 posts since Mar 2012
Reputation Points: 23
Solved Threads: 1
Skill Endorsements: 8
I followed the link and it doesn't seem to exist.
diafol
Keep Smiling
10,636 posts since Oct 2006
Reputation Points: 1,628
Solved Threads: 1,508
Skill Endorsements: 57
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 />
otengkwaku
Junior Poster in Training
92 posts since Mar 2012
Reputation Points: 23
Solved Threads: 1
Skill Endorsements: 8
diafol
Keep Smiling
10,636 posts since Oct 2006
Reputation Points: 1,628
Solved Threads: 1,508
Skill Endorsements: 57
Question Answered as of 3 Months Ago by
diafol