各位大侠啊帮帮忙,请尽量说的详细点,本人新手

WBOY
Release: 2016-06-13 13:31:21
Original
852 people have browsed it

求助各位大侠啊,帮帮忙,请尽量说的详细点,本人新手



handle_posting


$first_name=$_POST['first_name'];
$last_name=$_POST['last_name'];
$email_address=$_POST['email_address'];
$sex=$_POST['sex'];
$posting=nl2br($_POST['posting']);
$name=$first_name.' '.$last_name;
print"
Thank you,$name for your posting:

$posting


our team will send the lastest meassage to $email_address.


"
$name=urlencode($name);//使用urlencode进行链接
$email_address=urlencode($_POST['email_address']);
echo "

Clickhereto continue.

";
?>


出现Parse error: syntax error, unexpected '$name' (T_VARIABLE) in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\handle_posting.php on line 18错误

------解决方案--------------------
1.输出html的时候尽量使用界定符
2.另外还有引号使用错误的问题.
PHP code



    <meta http-equiv="Content-Type" content="text/html">
    <title>handle_posting</title>


<?php $first_name = $_POST['first_name'];
$last_name = $_POST['last_name'];
$email_address = $_POST['email_address'];
$sex = $_POST['sex'];
$posting = nl2br($_POST['posting']);
$name = $first_name . ' ' . $last_name;
echo <<<html
    "<div>Thank you,$name for your posting:
<p>$posting</p>
<p>our team will send the lastest meassage to $email_address.</p>

html;
$name = urlencode($name);//使用urlencode进行链接
$email_address = urlencode($_POST['email_address']);
    echo "<p>Click<a href="hand_posting.php?name=%24name&email_address=%24email_address">here</a>to continue.</p>";
?>


<br><font color="#e78608">------解决方案--------------------</font><br><br>" 加个分号 笨蛋!<br><br><br>";<br><br>另外请用echo 输出
<br><font color="#e78608">------解决方案--------------------</font><br><br>出现Parse error: syntax error, unexpected '$name' (T_VARIABLE) in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\handle_posting.php on line 18错误<br><br>这种错误几乎是:不是哪里少了个分号,就是哪里少了个引号。
<br><font color="#e78608">------解决方案--------------------</font><br>少分号 <div class="clear">
                 
              
              
        
            </div>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!