私はこのようなエラーがあります
警告: mysql_fetch_array() は、パラメーター 1 がリソースであり、543 行目の /home/sibisier/public_html/customer/input_customer_issue.php で指定された文字列であると想定しています。
これは543行目のコードです
$query_email = "SELECT employee.nip, employee.nama, employee.job_title,
employee.unit_id, employee.business_email, unit.nama_unit
FROM employee
INNER JOIN unit ON employee.unit_id = unit.unit_id
where employee.job_title IN('Team Leader','Assistant Relationship Manager','PROFESSIONAL STAFF')
AND employee.unit_id IN(12)";
$resul1 = mysql_query($query_email) or die(mysql_error());{
$to = $resul1['business_email'];
$subject = 'Notifikasi';
$message = "<table>";
$message .= "<tr><td>Date</td><td>:</td><td>" . $tanggal_sekarang . "</td></tr>";
$message .= "<tr><td>NIP</td><td>:</td><td>" . $nip . "</td></tr>";
$message .= "<tr><td>Unit</td><td>:</td><td>" . $resul1['nama_unit'] . "</td></tr>";
$message .= "<tr><td>CIF</td><td>:</td><td>" . $cif . "</td></tr>";
$message .= "<tr><td>Comment</td><td>:</td><td>" . $comment . "</td></tr>";
$message .= "</table>";
$headers = "From: admin@sibisiser.com \n";
$from .= "Reply-To: zack.zacky14@gmail.com \n";
$from .= "Content-type: text/html \r\n";
mail($to, $subject, $message,$headers, $from);
echo "Mail Sent.";
私にはわかりません。検索していて、常にこのエラーが発生します。
助けてください。ありがとう