A simple code that shows how to append data to a flat text file using php <?php $File = “myfile.txt”; $Handle = fopen($File, ‘a’); $Data = “php\n”; fwrite($Handle, $Data); $Data = “mysql\n”; fwrite($Handle, $Data); print “Data Added”; fclose($Handle); ?> This... (Continue reading)
Hello guys i am happy to say that this is my 100th POST and very happy to see my website is having more than 70 Unique visits everyday. Do visit my website for all kind of scripts and tricks.Thanks This code will... (Continue reading)
The information isn’t going to be saved on the localhost database — it needs to be stored in a remote database that I cannot connect directly to.I thought about all of the possible solutions for solving this challenge and settled... (Continue reading)
Very easy to authenticate and login to yahoo using the cUrl library in php, very easy to do.Just check this link if you are not aware of what cUrl is all about In this line curl_setopt ($ch, CURLOPT_POSTFIELDS, “login=emailid&passwd=password&&submit=Sign In”); Please enter your EMAIL ID and PASSWORD,... (Continue reading)
Hi Guys…i am back again with some interesting tutorial based on cUrl.. CURL is a library created by Daniel Stenberg, which allows you to connect and communicate with many different types of servers through various protocols. libcurl currently supports the... (Continue reading)