<?php
// This code is an example of use of the MZK Library
// It is available here:
// 	http://code.google.com/p/mzk/
if (isset($_REQUEST['mail'],$_REQUEST['pass'])){
	include("mzk.php");
	$t = new MezzengerKlient;
	$t->init($_REQUEST['mail'],$_REQUEST['pass'],"NLN");
	$t->login();
	$t->load_login();
	$t->quit();
	print_r($t->mycontacts);
	exit;
}
?>
<html>
<head>
<title>MSN Messenger Contact Grabber by sirdarckcat</title>
</head>
<body>
<h1>MSN Messenger Contact Grabber</h1>
<h5>Using MZK Library (by sirdarckcat)</h5>
	<form method=POST>
		<input type=text value="yourmail@hotmail.com" name=mail><br>
		<input type=password value="*******" name=pass><br>
		<input type=submit>
	</form>
</body>
</html>