<?php
/*
CREATIVE COMMONS - Attribution-No Derivative Works 3.0 Germany:
- You may not alter, transform, or build upon this work.
- Dieses Werk darf nicht bearbeitet oder in anderer Weise verändert werden.
*/
if ( $senden && $GigStatus=="" )
{
echo '<tr><td></td><td class="ERROR">'.$L_068.'</td></tr>';
}
echo '<tr>
<td>'.$L_GigStatus.':</td>
<td>
<select name="GigStatus" size="1">';
if ( $GigStatus=='' ) echo '<option></option>';
echo '<option value="Gig" '; if ($GigStatus=="Gig") echo ' selected="selected"'; echo'>'.$L_GigStatusGig.'</option>
<option value="Option" '; if ($GigStatus=="Option") echo ' selected="selected"'; echo'>'.$L_GigStatusOption.'</option>
<option value="Rehearsal" '; if ($GigStatus=="Rehearsal") echo ' selected="selected"'; echo'>'.$L_GigStatusRehearsal.'</option>
<option value="Blocked" '; if ($GigStatus=="Blocked") echo ' selected="selected"'; echo'>'.$L_GigStatusBlocked.'</option>
</select>
</td>
</tr>';
?>