我有一个php code 在我的网站内的报价表中java script 用于制作
name , telephone number and email
提交表单之前需要填写的字段及其工作正常,但几天前我发现有人向我发送了大量该表单的垃圾邮件,他将表单发送为空,这意味着他可以访问我的文件,我的意思是像黑客一样,或者他如何做到这一点
<form id="forma" method="post" action="quatation.php">
<div id="infoq">
<label id="namelab" for="namea"><span>* </span><?php _e ("Name", "my_theme");?></label>
<input type="text" name="namea" id="namea" value="" size="22" tabindex="1" class="rounded" required aria-required=\'true\' pattern="^([a-zA-Z\\u0600-\\u06ff\\ufb50-\\ufdff\\ufe70-\\ufeff]+)$" title="Your name (no special characters, diacritics are okay)"
spellcheck="false"/> <br />
<label id="emaillb" for="email"><span>* </span><?php _e ("Email", "my_theme");?></label>
<input type="email" name="email" id="email" value="" size="22" tabindex="2" class="rounded" required aria-required=\'true\'
pattern="^(([-\\w\\d]+)(\\.[-\\w\\d]+)*@([-\\w\\d]+)(\\.[-\\w\\d]+)*(\\.([a-zA-Z]{2,5}|[\\d]{1,3})){1,2})$"
title="Your email address" spellcheck="false" /> <br />
<label id="phonelb" for="phonea"><span>* </span>Phone</label>
这是一种形式,但问题是我过去用这个公式的时候。主题文件中的php文件它给了我错误
找不到请求的URL/Q。在此服务器上找不到php
所以我把它放在外面,这可能是原因吗?