메일발송이 제대로 되지 않던것 수정
This commit is contained in:
@ -74,7 +74,6 @@ include_once('./admin.head.php');
|
|||||||
<form name="fmailselectlist" id="fmailselectlist" method="post" action="./mail_select_update.php">
|
<form name="fmailselectlist" id="fmailselectlist" method="post" action="./mail_select_update.php">
|
||||||
<input type="hidden" name="token" value="<?php echo $token ?>">
|
<input type="hidden" name="token" value="<?php echo $token ?>">
|
||||||
<input type="hidden" name="ma_id" value="<?php echo $ma_id ?>">
|
<input type="hidden" name="ma_id" value="<?php echo $ma_id ?>">
|
||||||
<input type="hidden" name="ma_list" value="<?php echo $ma_list ?>">
|
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
@ -93,8 +92,7 @@ include_once('./admin.head.php');
|
|||||||
$i=0;
|
$i=0;
|
||||||
$ma_list = "";
|
$ma_list = "";
|
||||||
$cr = "";
|
$cr = "";
|
||||||
while ($row=sql_fetch_array($result))
|
while ($row=sql_fetch_array($result)) {
|
||||||
{
|
|
||||||
$i++;
|
$i++;
|
||||||
$ma_list .= $cr . $row['mb_email'] . "||" . $row['mb_id'] . "||" . $row['mb_name'] . "||" . $row['mb_nick'] . "||" . $row['mb_datetime'];
|
$ma_list .= $cr . $row['mb_email'] . "||" . $row['mb_id'] . "||" . $row['mb_name'] . "||" . $row['mb_nick'] . "||" . $row['mb_datetime'];
|
||||||
$cr = "\n";
|
$cr = "\n";
|
||||||
@ -110,6 +108,7 @@ include_once('./admin.head.php');
|
|||||||
<?php } ?>
|
<?php } ?>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
<textarea name="ma_list" style="display:none"><?=$ma_list?></textarea>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="btn_confirm">
|
<div class="btn_confirm">
|
||||||
|
|||||||
Reference in New Issue
Block a user