quasi so:
if($aktiv == "1")
{
$var = $_GET['var']; //mit Absicht nicht geprüft
if($var = "test")
{
goto test;
}
}
else goto test;
test:
//Anweisungen
Aber goto ist nunmal eher selten benutzt. Außerdem erst ab 5.3 kompatible.
lg