Strict but sane Error reporting system
[mirrors/Kyberia-bloodline.git] / wwwroot / _ajax / get_children.php
CommitLineData
51ff3226 1<?php
8f03b4ac 2error_reporting(E_ALL | E_STRICT);
51ff3226 3require('../config/config.inc');
e909f81b 4require(INCLUDE_DIR.'database.inc');
51ff3226 5$db=new CLASS_DATABASE();
6$user_id = $_GET['user_id'];
7$node_id = $_GET['node_id'];
8
9// listing amount
10$set=$db->query("select users.listing_amount, users.listing_order from users where users.user_id='$user_id' limit 1");
11$set->next();
12$listing_amount=$set->getString('listing_amount');
13if (!is_numeric($listing_amount)) {
14 $listing_amount=23;
15}
16$offset=0;
17
18$q="select creator.node_name as creator,users.user_id,nodes.node_name,nodes.node_id as node_id from nodes
19left join node_access on (nodes.node_id=node_access.node_id and node_access.user_id='$user_id') left join users on users.user_id=nodes.node_creator left join nodes as creator on nodes.node_creator=creator.node_id where nodes.node_parent='$node_id'";
20
21$q.=" order by nodes.template_id,nodes.node_name LIMIT 0,3";
22$set=$db->query($q);
23
24while ($set->next()) {
25 $get_children_array[]=$set->getRecord();
26}
27printf('<script language="JavaScript" type="text/javascript">function deti(){ var childrens = new Array();');
28foreach ($get_children_array as $index => $content) {
29 printf('childrens[%d] = new Array("%s", %d, "%s", %d);'."\n", $index, $content['creator'], $content['user_id'], $content['node_name'], $content['node_id']);
30}
31printf('for (x = 0; x < childrens.length; x++) {document.write(childrens[x] + "<br>");} }</script>');
32?>
This page took 0.239805 seconds and 4 git commands to generate.