http://www.yopmail.com/?login=51hwp2v6zgtqes04fbyiu89dk@yopmail.com


<?php

/**
 * @page email_jetable_yopmail.php
 * @brief Page de création d'un email jetable.
 *
 * @author hughes monget
 * @see http://monget.com/
 */

//$email = array_merge(range('a', 'z'), range('0', '9'), str_split('.-_'));

$email = array_merge(range('a', 'z'), range('0', '9'));
shuffle($email);
$email = implode($email);
$email = substr($email, 0, 25);
$email = $email.'@yopmail.com';
$url = 'http://www.yopmail.com/?login='.$email;
$input = '<input type="text" value="'.$email.'" onclick="this.select()"/>';
$link = '<a href="'.$url.'" target="_blank">'.$url.'</a>';

echo 
'<style type="text/css"><!-- p, input { font-family: monospace; } input { width: 350px; border: 0 none; } --></style>';

echo 
'<p>',$input,'</p><p>',$link,'</p>';

echo 
'<hr />';
highlight_file(__FILE__);