-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcharacter.php
25 lines (25 loc) · 1.01 KB
/
character.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<div class="col-sm-1">
<div class="radio">
<label>
<input type="radio" class='test' name="CharacterInfoSex" value="H" id="CharacterInfoSex1" <?php if($sexe['SEXE'] =='H'){echo'checked';} ?>> Male
</label>
</div>
<div class="radio">
<label>
<input type="radio" class='test' name="CharacterInfoSex" value="F" id="CharacterInfoSex2" <?php if($sexe['SEXE'] =='F'){echo'checked';} ?>> Female
</label>
</div>
</div>
<div class="col-sm-9" style="padding-top:12px;">
<label for="CharcterInfoName" class="col-sm-1">Name: </label>
<div class="col-sm-5">
<input type="name" class="form-control test" name="name" id="CharcterInfoName" value= <?php echo $name["NAME_SURVIVORS"] ?>>
</div>
</div>
<div class="col-sm-2">
<div class="checkbox">
<label>
<input type="checkbox" class='test' id="CharacterInfoDead" <?php echo ($dead['DEAD'] =='1') ? 'value ="0" checked' : 'value="1"'; ?> > Dead
</label>
</div>
</div>