ParseError: syntaxerror, unexpected $ end error

Source: Internet
Author: User
Tags apache error log
Maybe it's some of the unfamiliar php features, but if I write too much, I will gradually adapt to it. here I will sort out a code compilation debugging problem with the following error: Parseerror: syntaxerr

Maybe it's some of the unfamiliar php features, but if I write too much, I will gradually adapt to it. here I will sort out a code compilation debugging problem with the following error: Parse error: syntax error, unexpected $ end in D: xampphtdocsguestBookguestBook. php on line 330

First, let's take a look at the program's 330 lines and the last line of code. what is the error? Google search:

In PHP 5, the following error may appears as an error entry in Apache error log or simply displays on PHP web page, even if calling to php scripts with php_info () works perfectly and successfully returns information on PHP deployments:

Parse Error: syntax error, unexpected $ end in ..... Scripts. php on line...

The error may caused by a missing curly bracket in PHP script coding. beside, it may also caused by error in PHP coding in class definition, as in PHP, a class definition cannot be broke up and distributed into multiple files, or into multiple PHP blocks, unless the break is within a method declaration.

But more commonly, the error is often caused by the use of Short Open tags in PHP,

To use short open tags, it must be enabled in PHP. INI. Search for short_open_tag in PHP. INI, and change the value to On. The line shoshould look line:

Short_open_tag = On

I am not good at English? Look at several other searches without having said anything, so let's take a look at English. although it cannot be translated as a data translation, it means you understand it:

The error occurs when a short tag is used. you can set short_open_tag = On in php. ini.

The original Parse error prompt is generally a syntax error. an open label is used, and the statement is not terminated, that is, some basic programming errors. for example, if () or () {...} I forgot "}"; Forgot "?> ". Check the code carefully. The "}" is missing. the modified program runs normally. instance:

Conn. php

  1. /*
  2. * PHP100Job v1.0
  3. * Programmer: Msn/QQ Co., haowubai@hotmail.com (925939)
  4. * Www.phpfensi.com Develop a project PHP-MySQL-Apache
  5. * Window 2003-Preferences-PHPeclipse-PHP-Code Templates
  6. */
  7. $ Conn = @ mysql_connect ("localhost", "root", "dong") or die ("database link error ");
  8. Mysql_select_db ("news", $ conn );
  9. Mysql_query ("set names 'gbk'"); // use GBK Chinese encoding;
  10. Function htmtocode ($ content ){
  11. $ Content = str_replace ("n ","
    ", Str_replace (" "," ", $ content ));
  12. Return $ content;
  13. }
  14. // $ Content = str_replace ("'", "'", $ content );
  15. // Htmlspecialchars ();
  16.  
  17. ?>
  18. /*
  19. * PHP100Job v1.0
  20. * Programmer: Msn/QQ Co., haowubai@hotmail.com (925939)
  21. * Www.php100.com Develop a project PHP-MySQL-Apache
  22. * Window 2003-Preferences-PHPeclipse-PHP-Code Templates
  23. */
  24. Include ("conn. php ");
  25. Include ("head. php ");
  26. $ SQL = "SELECT * FROM 'message' order by id desc ";
  27. $ Query = mysql_query ($ SQL );
  28. While ($ row = mysql_fetch_array ($ query )){
  29. ?>
  30. Title: User:  
  31.  
  32. Content:
  33. Echo htmtocode ($ row [content]);
  34. ?> 
  35.  
  36.  
  37. }
  38. ?>

The following error occurs during running.

Parse error: syntax error, unexpected $ end in E: wampwwwleave_messagelist.php on line 35

The error is reported here. Change

Solution:You change the title, content, and user That's all. Function , This is not the main one, but it is not displayed at most.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.