2016-11-07 52 views
0

I have search through Parse error and I didn't see T_INCLUDE. So I can't solve this problem.解析錯誤:語法錯誤,意想不到的 '包括'(T_INCLUDE)在d: learnphp Drupal的7.43 站點上線31

我使用htaccess的文件的PHP的index.php和我解決PEAR問題。之後,我又遇到了另一個問題,你可以在標題中看到。請有人告訴我如何解決這個錯誤。

<?php 

// Start the session. 
session_start(); 

// Moved functions to their own file so we can use them in page files. 
include('includes/functions.php'); 

// Connect to the database. 
db_connect(); 

// If this is index.php, we won't get a path, so we need to set it. 
$path = isset($_GET['path']) ? $_GET['path'] : 'home.php'; 


// Render featured products. 
$featured_product_output = render_product(get_setting('featured_product_ids')); 

// Get some variable to use in the templates. 
$company_name = get_setting('company_name'); 
$year = date('Y'); 

// Show log in/log out links. 
$login_logout = '<a href="login.php">Log in </a>'; 
if (isset($_SESSION['user'])) { 
    $login_logout = '<a href="login.php"My account</a> | <a href="login.php?action=logout>Log out</a>'; 
} 

// Include the file that matches the path name. 
require 'C:\Program Files (x86)\DevDesktop\common\pear\PEAR.php' 
include('pages/' . $path); 

$notices = get_notices(); 

include('includes/page-template.php'); 

回答

2

你忘了寫';'第30行結尾處:
要求'C:\ Program Files(x86)\ DevDesktop \ common \ pear \ PEAR.php'

相關問題