10 lines
238 B
PHP
10 lines
238 B
PHP
<?php if(isset($feedbackID)):?>
|
|
<?php $inputHtml = html::hidden('feedback', (int)$feedbackID);?>
|
|
<script language='Javascript'>
|
|
$(function()
|
|
{
|
|
$('#createForm').append(<?php echo json_encode($inputHtml)?>);
|
|
})
|
|
</script>
|
|
<?php endif;?>
|