aboutsummaryrefslogtreecommitdiffstats
path: root/php/readdir.php
blob: 24d3c4936c32605dbfac00771653dec628b87b9c (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
	require_once "node.php";
	session_start();
	$user=$_SESSION['user_object'];
	$path=$_POST['path'];

	$ret=get_directory_contents($path,$user);

	$json=json_encode($ret);
	echo $json;
?>