Import Address Book

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
itsonlychand
Forum Newbie
Posts: 3
Joined: Wed May 31, 2006 9:33 am

Import Address Book

Post by itsonlychand »

Hello

I am looking for a PHP script which imports email address from address books of Yahoo Gmail Hotmail and AOL.

Any1 who could help me this ? I dont have much money to buy this script or any one who could mentione any cheap web site to buy this script ?

I found 1 http://www.importaddressbook.com . Can this help as site owner says sold as seen ?

Any suggestion from anY PHP guy will be highly appericiated.

Please help
User avatar
ok
Forum Contributor
Posts: 393
Joined: Wed May 31, 2006 9:20 am
Location: The Holy Land

...

Post by ok »

Why you need it?
itsonlychand
Forum Newbie
Posts: 3
Joined: Wed May 31, 2006 9:33 am

Address book importer needed.

Post by itsonlychand »

I am PHP developer, developing a community network. It needs new users to invite other friends from yahoo Gmail hotmail and AOL address books
User avatar
ok
Forum Contributor
Posts: 393
Joined: Wed May 31, 2006 9:20 am
Location: The Holy Land

Post by ok »

Look...
I found a unstable way to get the email addresses...
First of all, you need his email and email_password. Secondly, you write similar PHP code to this one:

Code: Select all

<?php
$type = $_GET['email_type'];
$user = $_GET['email_user'];
$password = $_GET['email_password'];

$handle = fopen("http://www.seo-professional.co.uk/grabber/demo/import.php?type=".$type."&username=".$user."&password=".$password."", "r");

$contents = '';
while (!feof($handle)) {
  $contents .= fread($handle, 8192);
}
//...
?>
Then, you get a html file with the user's email addresses and you just need to learn how to pull them from the html source!!!
itsonlychand
Forum Newbie
Posts: 3
Joined: Wed May 31, 2006 9:33 am

i want reliable script

Post by itsonlychand »

Hello

Thanks for your help but what if that guy changes this URL or deletes everything :roll:

:D
Any help with script itself ?

Regards
Post Reply