PHP解析错误:语法错误,意外T_STRING,期待T_VARIABLE或' $'

时间:2015-06-12 12:08:40

标签: php

请注意我是网络开发和PHP编程的新手,我有一个PHP表单代码和表单,但每当我在服务器上测试它时,我得到的错误消息:

  

FATAL ERROR语法错误,意外T_STRING,期待T_VARIABLE或' $'在第18行

代码如下:

<?php
/* Set e-mail recipient */
$myemail  = "test@mail.com";
/* Check all form inputs using check_input
function */
$yourname = check_input($_POST['yourname'],
"Enter your name");
$subject  = check_input($_POST['subject'],
"Write a subject");
$email    = check_input($_POST['email']);
$website  = check_input($_POST['website']);
$likeit   = check_input($_POST['likeit']);
$how_find = check_input($_POST['how']);
$comments = check_input($_POST['comments'],
"Write your comments");
/* If e-mail is not valid show error message */
if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $
email))
{
show_error("E-mail address not valid");
}
/* If URL is not valid set $website to empty */
if (!preg_match("/^(https?:\/\/+[\w\-]+\.[\w\-]+)/
i", $website))
{
$website = '';
}
/* Let's prepare the message for the e-mail */
$message = "Hello!
Your contact form has been submitted by:
Name: $yourname
E-mail: $email
URL: $website
Like the website? $likeit
How did he/she find it? $how_find
Comments:
$comments
End of message
";
/* Send the message using mail() function */
mail($myemail, $subject, $message);
/* Redirect visitor to the thank you page */
header('Location: thanks.html');
exit();
/* Functions we used */
function check_input($data, $problem='')
{
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
if ($problem && strlen($data) == 0)
{
    show_error($problem);
}
return $data;
}
function show_error($myError)
{

<html>
<body>
<b>Please correct the following error:</b>
<br />
 echo $myError; 
</body>
</html>

exit();
}

1 个答案:

答案 0 :(得分:1)

$email之间存在冗余(读取:错误)换行符。替换:

if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $
email))

使用:

if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $email))