This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function after_insert_budget($data) | |
{ | |
$data["params"]["tickets_id"]; | |
$data["params"]["ticket_date"]; | |
$data["params"]["id"]; | |
$data["params"]["username"]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php $reference_note = array('Room' => 'Room', 'Room 1' => 'Room 1', 'Room 2' => 'Room 2', 'Room 3' => 'Room 3'); | |
//echo form_dropdown('reference_note', $reference_note, '', 'class="form-control input-tip" id="reference_note"'); | |
foreach ($reference_note as $key => $value) { | |
echo form_radio('reference_note',$key,false, 'id="reference_note"').$value; | |
} | |
?> |