BXCP Probleme

hoshisun

Grünschnabel
Tach die Post!
ich hab mal wieder ein kleines Problem mit PHP. Und zwar handelt es sich hierbei um ein Problem mit den BXCP, ein Claninternbereich oder sowas in der Art. Aufjedenfall wollt ich bei den Memberdetails noch 2 weitere optionen hinzufügen aber da ich nicht so PHP firm bin, war mir schon vorher klar das das in die Hose geht. Und zwar handelt es sich um folgenden Scriptschnipsel:

Code:
<tr>
  <td>Character</td>
  <td class="left"><select name="char" class="form">
<option value="no" <?php if($details->char=="no") { echo $sel11; } ?>>----</option>
<option value="1" <?php if($details->char=="1") { echo $sel11; } ?>>Mensch</option>
<option value="2" <?php if($details->char=="2") { echo $sel11; } ?>>Nachtelf</option>
<option value="3" <?php if($details->char=="3") { echo $sel11; } ?>>Zwerg</option>
<option value="4" <?php if($details->char=="4") { echo $sel11; } ?>>Gnom</option>
</select>

</td>
</tr>
<tr>
  <td>Klasse</td>
  <td class="left"><select name="class" class="form">
    <option value="no" <?php if($details->char=="no") { echo $sel1; } ?>>----</option>
    <option value="1" <?php if($details->char=="1") { echo $sel1; } ?>>Druide</option>
    <option value="2" <?php if($details->char=="2") { echo $sel1; } ?>>Jäger</option>
    <option value="3" <?php if($details->char=="3") { echo $sel1; } ?>>Magier</option>
    <option value="4" <?php if($details->char=="4") { echo $sel1; } ?>>Paladine</option>
	 <option value="5" <?php if($details->char=="5") { echo $sel1; } ?>>Priester</option>
	  <option value="6" <?php if($details->char=="6") { echo $sel1; } ?>>Schurke</option>
	   <option value="7" <?php if($details->char=="7") { echo $sel1; } ?>>Shamane</option>
	   <option value="8" <?php if($details->char=="8") { echo $sel1; } ?>>Hexenmeister</option>
	   <option value="9" <?php if($details->char=="9") { echo $sel1; } ?>>Krieger</option>
  </select></td>
</tr>
<tr>
.
.
.
$update = "UPDATE users SET nick='$nick', name='$name', surname='$surname', sex='$sex', birthday='$birthday', country='$country', plz='$plz', place='$place', email='$email', icq='$icq', aboutme='$aboutme', webpage='$webpage', char='$char', class='$class' WHERE id='$myid'";

Genau die 2 letzte Sachen trägt er nicht ein bzw. ändert er! Warum?
Danke im vorraus!
zu betrachten is das ganze unter:
http://www.blackflames.de/sfseite/BXCP/index.php?show=mydata1 <- aber halt keine ergebnisse
 
Also ich kann da beim besten Willen nichts erkennen - das sind ja auch nur 2 Select-Felder und ein kleiner Befehl - den restlichen Code - vor allem, der kein HTML erzeugt, den würd ich gerne mal sehen
 
Zurück