我有 sendForm.php 文件,这是使用 PHPMailer 发送表单的 php。在标签之间有回声,我需要在标签之间使用 PHP 变量。这有可能吗?我知道将 PHP 和 JS 结合起来太过分了,但是我能做什么...我需要一个弹出窗口,这就是我也使用 JS 的原因。回声本身仅打印到网页本身。
$totalSize = ($totalSize/(1024*1024));
$totalSize = round($totalSize,2);
if(!$mail->Send()) {
echo "Error sending form! You are trying to send too large files. Their size is: ", $totalSize, " MB";
echo '<script type="text/javascript">alert("Error sending form! You are trying to send too large files. Their size is: ??? ");</script>';
}
如何在 JS 中打印 $totalSize 变量来代替第二个回显中的那些问号?谢谢你的帮助。我还是个初学者。