Undefinierte variable

siluxo
Hallo im Code (unten) ist eine undefinierte variable aber woran liegts?
php:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
<?php 
error_reporting(E_ALL); 
if (file_exists("ctracker.php")) : include("ctracker.php"); endif; 

$copyless "Copyright 2005-2006 by Sören Wächter | <a href=\"http://www.snakelogan.de/\">http://www.snakelogan.de</a>"$lizenzcode= array(); 
$lizenzcode[1] = "457-468-458-450-369"$lizenzcode[2] = "456-210-980-473-254"; 

foreach($lizenzcode as $key => $dielizenz) { 
    if($id && $key == $id) { 
        if($dielizenz != $lizenzcode[$id]) : echo $copyless; endif; 
    } 
} 
?> 
Blacksoul
Relativ einfacher fehler...

$id..

MfG