PHP 워드 프레스 메 신 저 대량 조회 E-mail 주소 실현 방법

오늘 Bloger 친구 의 E-mail 세배 문 자 를 많이 받 았 습 니 다.헤헤,재 미 있 었 습 니 다.그런데 이 걸 어떻게 이 루 었 을 까?간단 하지만 간단하게 두 단계 로 나 눌 수 있 습 니 다.
1)SQL 조 회 를 통 해 E-mail 주소 가 져 오기
2)어떤 방법 으로 이메일 을 단체 로 발송
1,몇 줄 의 PHP 코드 를 해결 할 수 있 습 니 다.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html
xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>WordPress Designed By Kaisir</title>
</head>
<body>
<?php
//
$db_server="localhost";
//
$db_user_name=" ";
//
$db_user_password=" ";
//
$db_name=" ";
//
$sql="SELECT DISTINCT comment_author_email FROM `blog_comments` WHERE 1";
$conn=mysql_connect($db_server,$db_user_name,$db_user_password);
if(!$conn)
{
 echo"<p align=center> ! !</p>";
 exit(0);
}
$flag=mysql_select_db($db_name,$conn);
if(!$flag)
{
 echo"<p align=center> , !</p>";
 exit(0);
}
//
$result=mysql_query($sql,$conn);
while($row=mysql_fetch_array($result))
{
?>
<?echo $row["comment_author_email"]?>,
<?php
}
mysql_close($conn);//
?>
</body>
</html>
2.이것 은 귀 찮 습 니 다............................................................................

좋은 웹페이지 즐겨찾기