
€ . . . . W E L C O M E
Ohayo! Bienvenidos a esta web que se llama Yakusoku, que en japones significa Promesa.
Un pequeño espacio creado para divertirnos y pasar un buen rato, conociendonos y haciendo muchos amigos.
Espero que la web sea de su agrado y se pasen mucho por aquí.
................................................................................................... SIGN THE GUESTBOOK
€ . . . . V E R S I O N
Bueno la versión está dedicada a Amu de Shugo Chara. En este caso convertida en Amuleto de Pica.
Es un anime muy divertido, se los recomiendo. El lay está hecho por Yamii. A mi me encanto, adoro como diseña. Mil gracias Yamii.
...............................................................................................................................................
€ . . . . U P D A T E S
P e q u e - C h a n ~
..............................................................................................................................................
P e q u e - C h a n ~
//////////////////////////////////////////////////////////////////
// Function: Lists all commenters with mail or url when available
function list_commenters($news, $linebreak, $separator) {
global $cutepath;
$alle_comments = file($cutepath."/data/comments.txt");
$i=0;
foreach($alle_comments as $comments_line)
{
$comments_line = trim($comments_line);
$comments_line_arr = explode("|>|", $comments_line);
if($news == $comments_line_arr[0])
{
$individual_comment = explode("||", $comments_line_arr[1]);
foreach ($individual_comment as $single_comment)
{
$single_comment_arr = explode("|", $single_comment);
if (($single_comment_arr[0] != "") && (!stristr($output, $single_comment_arr[1])))
{
$i++;
if($single_comment_arr[2] != "none")
{
if( preg_match("/^[\.A-z0-9_\-]+[@][A-z0-9_\-]+([.][A-z0-9_\-]+)+[A-z]{1,4}$/", $single_comment_arr[2])){ $url_target = "";$mail_or_url = "mailto:"; }
else
{
$url_target = "target=\"_blank\"";
$mail_or_url = "";
if(substr($single_comment_arr[2],0,3) == "www") $mail_or_url = "http://";
}
$output .= "".stripslashes($single_comment_arr[1])."".$separator;
}
else $output .= $single_comment_arr[1].$separator;
if (fmod($i, $linebreak)==0) $output .= "
";
}
}
}
}
if (fmod($i, $linebreak)=="0") $output = substr($output, 0, -(strlen($separator)+6));
else $output = substr($output, 0, -strlen($separator));
return $output;
}