Hey guys,
I'm currently experimenting with WURFL;
I tried to set up a WURFL File to track my own browser and later other devices and browsers.
However, it is an example of the o'reilly book " Mobiles Web von Kopf bis Fuß" or English title Head First Mobile Web".

Can anybody help why I get this Parse error? What do I wrong?

Cheers,
Peter

Parse error: syntax error, unexpected 'C' (T_STRING) in C:\xampp\htdocs\chapter5\explore\config.php on line 9

<?php
ini_set('display_errors', 'on');
error_reporting(E_ALL);

/* Wichtig: Sie müssen diese beiden Pfade anpassen */
/* WURFL_DIR muss auf das WURFL-Installationsverzeichnis zeigen. */
define("WURFL_DIR", 'C:\xampp\htdocs\wurfl-php-1.4.0\WURFL\');
/* RESOURCES_DIR muss auf das resources-Verzeichnis zeigen. */
define("RESOURCES_DIR", 'C:\xampp\htdocs\wurfl-php-1.4.0\examples\resources\');

$app_path         = WURFL_DIR . 'Application.php';
$wurflConfigFile  = RESOURCES_DIR . 'wurfl-config.xml';

if (!file_exists($app_path)) {
  print '<h2>Problem!</h2> <p>WURFL sucht hier nach der Datei "Application.php" :<br /><code>' . $app_path
    . '"</code><br />Leider kann es sie nicht finden. Überprü†en Sie den Pfad für "WURFL_DIR" in config.php</p>';
}
if (!file_exists($wurflConfigFile)) {
  print '<h2>Problem!</h2> <p>WURFL sucht hier nach der Datei "wurfl-config.xml":<br /><code>' . $wurflConfigFile
    . '"</code><br />Leider kann es sie nicht finden. Überprüfen Sie den Pfad für "RESOURCES_DIR" in config.php</p>';
}
require_once($app_path);
?>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.