同じPHPページであるPHPブロックから別のPHPブロックにPHP変数値を取得するにはどうすればよいですか
<?php
//If the form is submitted
$name=$school=$web=$location=$phone=$email=$comments="";
if(isset($_POST['submit'])) {
//Check to make sure that the name field is not empty
if(trim($_POST['Full']) == '') {
$hasError = true;
}
else if (!preg_match("/^[a-zA-Z ]*$/",trim($_POST['Full']))){
$hasError = true;
$nameErr = "Only letters and white space allowed";
}
else {
$name = secure_data($_POST['Full']);
}
:
:
jquery と HTML コードの間には、
<tr>
<td valign="top"><label for="Full" class="label">Full Name<span class="required_star"> * </span></label></td>
<td width="310" valign="top"><input type="text" name="Full" id="Full" value="" maxlength="80" style="width:230px"/></td>
<td width="159" class="status"><font color="#CC0000"><?php echo $nameErr;?></font></td>
</tr>
取得エラー -
注意: 未定義の変数: C:\xampp\htdocs\manazeschool\contact_us.php の 232 行目の nameErr