Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.94 KB | None | 0 0
  1. <input id="showstatus0" type="checkbox" name="showstatus[]" value="0" <?=in_array(0,$show_status) ? 'checked="checked"' : ''?> /> <lable for="showstatus0">Awaiting admin approval</label><br/>
  2. <input id="showstatus1" type="checkbox" name="showstatus[]" value="1" <?=in_array(1,$show_status) ? 'checked="checked"' : ''?> /> <lable for="showstatus1">Approved, waiting for SSA</label><br/>
  3. <input id="showstatus2" type="checkbox" name="showstatus[]" value="2" <?=in_array(2,$show_status) ? 'checked="checked"' : ''?> /> <lable for="showstatus2">Rejected by admin</label><br/>
  4. <input id="showstatus3" type="checkbox" name="showstatus[]" value="3" <?=in_array(3,$show_status) ? 'checked="checked"' : ''?> /> <lable for="showstatus3">Response retrieved from SSA</label><br/>
  5. <input id="showstatus4" type="checkbox" name="showstatus[]" value="4" <?=in_array(4,$show_status) ? 'checked="checked"' : ''?> /> <lable for="showstatus4">Response relayed to client</label><br/>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement