<?php
// Script created by Nur-E-Alam Khan
// Email: porosh@msn.com (Dhaka, Bangladesh)
$url = "http://login.yahoo.com/config/login?.src=ym&.intl=us&.partner=&.done=http%3A%2F%2Fmail.yahoo.com%2F" ;
$ch = curl_init ();
curl_setopt ( $ch , CURLOPT_RETURNTRANSFER , 1 );
curl_setopt ( $ch , CURLOPT_URL , $url );
curl_setopt ( $ch , CURLOPT_HTTPAUTH , CURLAUTH_ANY );
curl_setopt ( $ch , CURLOPT_COOKIEJAR , '/temp/cookie.txt' );
curl_setopt ( $ch , CURLOPT_POSTFIELDS , "login=emailid&passwd=password&&submit=Sign In" );
ob_start ();
curl_exec ( $ch );
ob_end_clean ();
curl_close ( $ch );
unset( $ch );
$ch = curl_init ();
curl_setopt ( $ch , CURLOPT_RETURNTRANSFER , 1 );
curl_setopt ( $ch , CURLOPT_COOKIEFILE , "/temp/cookie.txt" );
curl_setopt ( $ch , CURLOPT_URL , "http://us.f515.mail.yahoo.com/ym/login?" );
$result = curl_exec ( $ch );
curl_close ( $ch );
echo $result ;
?>
A function to check if a URL exists Categories : PHP , CURL , HTTP Returns Yahoo! Address Book and Messenger List as an Array Categories : PHP , PHP Classes , CURL Using cURL to download a file programmatically. Categories : PHP , PHP Extensions , CURL Link Manager for Link Exchangers Categories : PHP , PHP Classes , Databases , MySQL , CURL Open remote https url using Curl and accept cookie Categories : PHP , CURL Amazon.com API, CURL-REST Parser. Obtain data about Amazon products (PHP5 +) Categories : PHP , Ecommerce , XML , Web Services , CURL Query2Report : Generating Html, Pdf and Csv Reports from SQL Query Categories : PHP , PHP , HTML , PDF , Excel Sample AIM (Advanced Integration Method) PHP Script For Authorize.net using CURL Categories : CURL , Ecommerce , PHP These PHP Classes Check if a host is alive using various methods. Categories : PHP , PHP Classes , Sockets , CURL Import the yahoo address book. Categories : PHP , CURL , Authentication Url To Pdf Report By Remote Application Categories : PHP , PHP Classes , PDF , CURL Using data from a string. Categories : PHP , Strings , CURL Yahoo! Messenger Friend List Categories : PHP , CURL , HTML and PHP curl_close -- Close a CURL session Categories : PHP , PHP Functions , CURL Newbie Notes #8 - A cron trick Categories : PHP , CURL , Beginner Guides
NUR-E-ALAM KHAN wrote : 1374
I forgot to write that you may need to change the URL according to your Email account url. I will submit another code which will detect the url automatically