512 )
$_GET['start'] = 1;
// end-channel?
if ( !isset($_GET['end']) || $_GET['end'] < 1 || $_GET['end'] > 512 )
$_GET['end'] = 12;
// zahlendreher?
if ( $_GET['start'] > $_GET['end'] )
{
$end = $_GET['end'];
$_GET['end'] = $_GET['start'];
$_GET['start'] = $end;
unset($end);
}
// erstmal slider bauen
for (
$i = $_GET['start'];
$i <= $_GET['end'];
$i++
)
{
echo'
';
};
?>