1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php session_start(); include('../../function_msg.php');
$arg = explode(',', $_POST['arguments']);
if($_POST['fn_name'] == 'text_editor'){ text_editor($arg[0], $arg[1], $arg[2], $arg[3]); button_text('<img src="coremain/images/true.gif" />แก้ไขข้อมูล', 'modes', 4); }
?> <script>
var txt = $('#<?php echo $arg[4] ?>').html(); $('#evar').val(txt); $('#hidden_var').val('1');
</script>
|