Wie nebeneinander bekommen?!
Ersteinmal Hallo^^,
so ich habe ein kleines Problem und hab per Suche auch nichts gefunden.
Also es ist so:
Ich möchte neben den hier*** erscheindenden Drop Lists jeweils eine Checkbox einfügen, bekomme es allerdings nicht hin -.- könnte mir da einer evtl helfen?
Vielen Dank schon mal !
/* valid until + activate until */
$months = array();
for ($i = 1; $i <= 12; $i++)
$months[$i]=strftime("%b", strtotime("$i/1/2000"));
$years = array();
for ($i = $year_current; $i <= $year_max; $i++)
$years[$i]=$i;
printtablerow('Valid Until:',
gethtmlselect('form_validuntil_month',$months).' '.
gethtmlselect('form_validuntil_year',$years)); ***
printtablerow('Activate Until:',
gethtmlselect('form_activateuntil_month',$months).' '.
gethtmlselect('form_activateuntil_year',$years)); ***
Gruß Blue
|