从检查标签发送数据

Send data from a check label

你好,我遇到了以下问题,我正在制作一个将数据发送到 Gmail 电子邮件的表格,问题是在选择计划时,页面会抛出错误。邮件到达时没有任何不便,并且选择了计划,但是页面仍然存在错误。在这里,我获取数据并对其进行组织,以准备发送到 Gmail。我正在使用 PHPMailer 库

$mail->Body = "<h3>Nombre : $nombre <br>Empresa : $empresa <br>Direccion : $direccion 
    <br>Contacto: $contacto <br>Email: $email <br>Ciudad : $ciudad 
    <br>PlanA : $planA <br>PlanB : $planB <br>PlanC : $planC <br>PlanD : $planD </h3>";

This is the error that marks the page

还有 This is what I have in the HTML part

发送时,页面跳转。有什么办法可以解决吗?

代替 name 用于 uno、dos、tres、quatro 的无线电输入;你应该将这些设置为 value.

名称 应该为所有四个设置类似“计划”的内容。

对于单选输入选择,您希望仅选择组中的一个选项。

如果您在发布表单时检查要接收的四个选项中的每一个,则任何未选择的选项都不会发送到您的脚本,并且会抛出错误(如果您正在引用它们就好像它们都是传入的一样)。