Zitat Zitat von Masterphil Beitrag anzeigen
Ich würde mal sagen an der Stelle im Code wo die BannerAnzahl eingestellt oder eingeholt wird, kommt halt ne abfragein etwa, "if" uid = xxx ,begenzte Banner, else normaler Code.

MfG
Hab ich gemacht, geht nicht
PHP-Code:
<?if ($_SESSION['uid'] != '1') { if ($info['max_forced'] == 10)
 }else{
   <select name="max_forced">
   <option value="5" <? if ($info['max_forced'] == 5) echo 'selected';?>>5</option>
   <option value="10" <? if ($info['max_forced'] == 10) echo 'selected';?>>10</option>
   <option value="15" <? if ($info['max_forced'] == 15) echo 'selected';?>>15</option>
   <option value="25" <? if ($info['max_forced'] == 25) echo 'selected';?>>25</option>
   </select>
}?>
Meldung:
Parse error: syntax error, unexpected '}' ...steht für die Klammer vor dem else...so viel dazu. Danke für den tollen Tipp