XCL Web Application Platform 2.5.0
The XoopsCube Legacy Project
Loading...
Searching...
No Matches
install_insertData.tpl.php
1<?php
2
3foreach ( $this->v( 'dbm_reports' ) as $report ) {
4 echo $report . '<br>';
5}
6
7if ( is_array( $this->v( 'cm_reports' ) ) ) {
8
9 foreach ( $this->v( 'cm_reports' ) as $report ) {
10 echo $report . '<br>';
11 }
12}
13
14foreach ( $this->v( 'mm_reports' ) as $report ) {
15 echo $report . '<br>';
16}
17
18?>
19
20<script type="text/javascript">
21 (function () {
22 var obj = new XMLHttpRequest();
23 obj.open('POST', '../user.php', false);
24 obj.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
25 obj.send('uname=<?php echo urlencode( $this->v( 'adminname' ) )?>&pass=<?php echo urlencode( $this->v( 'adminpass' ) )?>&xoops_login=1');
26 })();
27</script>