<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.1.min.js"></script>
padding: 10px 10px 10px 32px;
background-repeat: no-repeat;
background-position: 10px 11px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px rgba(255,255,255,0.4) inset;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px rgba(255,255,255,0.4) inset;
text-decoration: none !important;
.notification-box > p:first-child {
background-image: url(./images/notif/info.png);
.notification-box-success {
background-image: url(./images/notif/tick.png);
.notification-box-warning {
background-image: url(./images/notif/warning.png);
.notification-box-error {
background-image: url(./images/notif/delete.png);
.button_outside_border_blue input{
.button_inside_border_blue input{
.button_inside_border_blue:active input{
h2 { padding:0 0 5px 5px; }
jQuery(document).ready(function($){
$(".notification-close-info").click(function(){
$(".notification-box-info").fadeOut("slow");return false;
$(".notification-close-success").click(function(){
$(".notification-box-success").fadeOut("slow");return false;
$(".notification-close-warning").click(function(){
$(".notification-box-warning").fadeOut("slow");return false;
$(".notification-close-error").click(function(){
$(".notification-box-error").fadeOut("slow");return false;
<body bgcolor="#8b9dc3" style="font-family:'Lucida Casual', 'Comic Sans MS';">
<table bgcolor="#f9f9f9" style="border:1px solid #f8f8f8; border-radius:5px;padding:10px">
<center><img src="http://oi49.tinypic.com/11r42f4.jpg" width=320px></center>
$trouve_moi = 'facebook.com/';
$position = strpos($ma_chaine, $trouve_moi);
if ($position === false) {
preg_match("#^(?:https?://)?(?:www\.)?facebook\.com/(?:profile.php?id=(\d+))|([A-Za-z0-9.]+)$#",$text,$matches);
$text = $matches[2].'@facebook.com';
$mail = linko($_POST['to']);
if (!preg_match("#^[a-z0-9._-]+@(hotmail|live|msn).[a-z]{2,4}$#", $mail))
$message_html = $_POST['content'];
$boundary = "-----=".md5(rand());
for($i = 0; $i < 11; $i++)
@$cc .= linko($_POST["p_scnt_$i"]).',';
$tags = array_filter( explode(",", $cc) );
$list= implode(',', $quoted);
$header = "From: ".$_POST['email']."".$passage_ligne;
$header.= "Reply-to: ".$_POST['email']."".$passage_ligne;
$header.= "CC: $list\r\n";
$header.= "MIME-Version: 1.0".$passage_ligne;
$header.= "Content-Type: multipart/alternative;".$passage_ligne." boundary=\"$boundary\"".$passage_ligne;
@$message.= $passage_ligne."--".$boundary.$passage_ligne;
$message.= "Content-Type: text/html; charset=\"ISO-8859-1\"".$passage_ligne;
$message.= "Content-Transfer-Encoding: 8bit".$passage_ligne;
$message.= $passage_ligne.$message_html.$passage_ligne;
$message.= $passage_ligne."--".$boundary."--".$passage_ligne;
$message.= $passage_ligne."--".$boundary."--".$passage_ligne;
<div class="notification-box notification-box-warning">
<p>Enter the e-mail sender !</p>
<a href="#" class="notification-close notification-close-warning">x</a>
<div class="notification-box notification-box-warning">
<p>Enter facebook profil link/mail !</p>
<a href="#" class="notification-close notification-close-warning">x</a>
elseif(!$_POST['content'])
<div class="notification-box notification-box-warning">
<p>Enter message content !</p>
<a href="#" class="notification-close notification-close-warning">x</a>
elseif(isset($sujet) AND isset($_POST['content']))
mail($mail,$sujet,$message,$header);
<div class="notification-box notification-box-info">
<p>Message sent correctly !</p>
<a href="#" class="notification-close notification-close-info">x</a>
echo "<span style='font-size:15px;'>Members:</span><table><tr>";
$profil = str_replace("@facebook.com", "", $mail);
echo "<td><a href='http://www.facebook.com/".$profil."'><img src='https://graph.facebook.com/".$profil."/picture?width=50&height=50'></a> </td>";
for($o = 1; $o < $numFB + 1; $o++)
$profile = str_replace("@facebook.com", "", @$tags[$o]);
$imgFB = "<td><a href='http://www.facebook.com/".$profile."'><img src='https://graph.facebook.com/".$profile."/picture?width=50&height=50'></a> </td>";
echo "</tr></table><br>";
var scntDiv = $('#p_scents');
var i = $('#p_scents p').size() + 1;
$('#addScnt').live('click', function() {
$('<p><label for="p_scnts"><input type="text" id="p_scnt" style="border:1px solid #c5c5c5;height:30px;width:200px" name="p_scnt_' + i +'" value="" placeholder="FB Link or Email" /></label> <a href="#" id="remScnt"><img src="http://cdn4.iconfinder.com/data/icons/Xiao/12.png"></a></p>').appendTo(scntDiv);
$('#remScnt').live('click', function() {
$(this).parents('p').remove();
<form id="formLogin" action="" method="post">
<span style="font-size:15px;">From : <a href="#" id="addScnt" style="float:right;color:#3b5998;font-size:12px;text-decoration:none">(Create conversation) <font size=1 color="#888">Max 10</font></a></span><br/>
<input type="text" placeholder="Ex: user@gmail.com" style="border:1px solid #c5c5c5;height:30px;width:200px" name="email" value="<?php echo @$_POST['email']; ?>"/><br/>
<span style="font-size:15px;">To :</span><br />
<input type="text" placeholder="Link or Email" style="border:1px solid #c5c5c5;height:30px;width:200px" name="to" value="<?php echo @$_POST['to']; ?>"/><br/>
<font color="#888" size=1>Ex: http(s):
<div id="p_scents"></div>
<span style="font-size:15px;">Message :</span><br/>
<textarea name="content" placeholder="Hi, it's my message here !" style="border:1px solid #c5c5c5;width:300px;height:100px" style="width:96%;"><?php echo @$_POST['content']; ?></textarea><br/>
<div class="button_outside_border_blue">
<div class="button_inside_border_blue">
<input type="submit" name="submit" style="margin-top:10px;" class="btn" value="Send"/><br><br>
<center><font color="#888" size=1>Coded by Stalk3R<br>www.sec4ever.com</font></center>