PHP ECHO VARIABLE

ppyai

New Member
I managed to create a new line for each only with :\[code\]$content1= hot("britney") ? "britney found" : "";$content2= hot("gaga") ? "gaga found" : "";$content3= hot("carol") ? "carol found" : ""; $filename = 'result.txt';$handle = fopen($filename, 'a');fwrite($handle, "$Content1\r\n");fwrite($handle, "$Content2\r\n");fwrite($handle, "$Content3\r\n");fwrite($handle, "$Content4\r\n");fclose($handle);\[/code\]But i have many lines and it makes a lot of modifications...How could i automatize the process ? maybe something like foreach < i really don't know how to implement this one here'I have the following codes:\[code\]require("class.XMLHttpRequest.php");function hot($news){ $url="https://localhost/search.aspx?search=".$news.""; $ajax=new XMLHttpRequest(); $ajax->setRequestHeader("Cookie","Cookie: host"); $ajax->open("GET",$url,true); $ajax->send(null); if($ajax->status==200){ $rHeader=$ajax->getResponseHeader("Set-Cookie"); if(substr_count($rHeader, "Present!")>0) { return true; } }else{ return false; }} echo ( hot("britney") )?"britney found":"<br>";echo ( hot("gaga") )?"gaga found":"<br>";echo ( hot("carol") )?"carol found":"<br>"; \[/code\]AND\[code\]<?php$filename = 'test.txt';$Content = "Add this to the file\r\n";echo "open";$handle = fopen($filename, 'x+');echo " write";fwrite($handle, $Content);echo " close";fclose($handle);?>\[/code\]and i have many \[code\]echo ( hot("britney") )?"britney found":"<br>";\[/code\] in my script and because of that i want to send them to a filehow can i set a string for \[code\]echo ( hot("britney") )?"britney found":"<br>";\[/code\]to be able to use it in my code that sends the info to filei also don't want the page to print anything to the screen
 
Back
Top