ตรวจสอบวันที่ ถ้าวันที่มากกว่าวันปัจจุบันให้บันทึกวันที่เลือกลง DB แต่ถ้าวันที่เลือก น้อยกว่าหรือเท่ากับวันปัจจุบันให้ทำการปลดล็อค
Code (PHP)
ตอนนี้เขียน form_dropdown ใน class modal ตอนนี้สามารถกดปลดล็อคได้แล้ว แต่ติดปัญหาตรงที่มีเวลามาเกี่ยวข้อง
เงื่อไขคือ ถ้าวันที่ น้อยกว่าหรือเท่ากับวันที่ปัจจุบันให้ปลดล็อค แต่ถ้าวันที่มากกว่าวันที่ปัจจุบันให้บันทึกข้อมูลวันที่ที่เปลี่ยนลง DB โดยที่ปุ่มยังติดโค้ดอยู่
controllers
function suspend($id)
{
$profilecode = ProfilesCode::find($id);
$profilecode->is_active = 0;
$profilecode->save();
$this->session->set_flashdata('message', 'ทำการปลด code เรียบร้อยแล้ว');
redirect("profilescodes/index/$id", 'refresh');
}
view
<div class="modal fade" id="inactive-modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<h4 class="modal-title" id="myModalLabel">ปลด code</h4>
<br>
<div class="col-sm-12 form-inline">
<?php if(!$profilecode->expired_at) :?>
<?php $profilecode->expired_at = date('Y-m-d'); ?>
<?php echo form_dropdown('expired_at[day]', get_select_date(), set_value('expired_at[day]', $profilecode->expired_at->format('d')), 'id="start-date-date" class="form-control start-date"');?>
<?php echo form_dropdown('expired_at[month]', get_select_month(), set_value('expired_at[month]', $profilecode->expired_at->format('m')), 'id="start-date-month" class="form-control start-date"');?>
<?php echo form_dropdown('expired_at[year]', get_select_to_year(), set_value('expired_at[year]', $profilecode->expired_at->format('Y')), 'id="start-date-year" class="form-control start-date"');?>
<?php echo form_error('expired_at[day]', '<label class="error">', '</label>'); ?>
<?php echo form_error('expired_at[month]', '<label class="error">', '</label>'); ?>
<?php echo form_error('expired_at[year]', '<label class="error">', '</label>'); ?>
<?php else :?>
<?php echo form_dropdown('expired_at[day]', get_select_date(), set_value('expired_at[day]', 'j/',strtotime($profilecode->expired_at->format('d'))), 'id="expired-at-date" class="form-control expired-date"');?>
<?php echo form_dropdown('expired_at[month]', get_select_month(), set_value('expired_at[month]','n/', strtotime($profilecode->expired_at->format('m'))), 'id="expired-at-month" class="form-control expired-date"');?>
<?php echo form_dropdown('expired_at[year]', get_select_to_year(), set_value('expired_at[year]','y/', strtotime($profilecode->expired_at->format('Y')+543)), 'id="expired-at-year" class="form-control expired-date"');?>
<?php echo form_error('expired_at[day]', '<label class="error">', '</label>'); ?>
<?php echo form_error('expired_at[month]', '<label class="error">', '</label>'); ?>
<?php echo form_error('expired_at[year]', '<label class="error">', '</label>'); ?>
<?php endif ;?>
</div>
<br>
<br>
<button type="button" class="btn btn-default" data-dismiss="modal">ยกเลิก</button>
<!-- <?php echo form_submit('submit', 'ตกลง', 'class="btn confirm btn-default"'); ?> -->
<a href="#" class="btn confirm btn-default">ตกลง</a>
</div>
</div>
</div>
</div>
Tag : PHP, MySQL, JavaScript
Date :
2015-10-14 16:48:14
By :
Sub.P
View :
2313
Reply :
1
Load balance : Server 02