I think we nearly have it now 😉 . One problem left : if i've some variables that are in use (through $_GET) an some that are not i still get an error message. When i don't have any variables i can solve the problem with :
if(!extract($_GET))
$mode = "NULL";
$something = "NULL";
But in this case this isn't possible (besause i'm getting SOME, but not ALL, depanding on the link the user used), so i tried :
if($_GET["sTeil"])
$sTeil = $_GET["sTeil"];
else
$sTeil = "";
if($_GET["sTeilValueMitte"])
$sTeilValueMitte = $_GET["sTeilValueMitte"];
else
$sTeilValueMitte = "";
Which din't work ... 😕 .And the last thing : I'm getting errors like "Undefined index: sTeil", what's that meaning ?