first commit

This commit is contained in:
dev@siliconpin.com
2025-08-07 11:53:41 +05:30
commit a3067c5ad4
4795 changed files with 782758 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
if(isset($_GET['filename']) && isset($_GET['inFolder']) ) {
$FC = file_put_contents(APP_DIR.'/CONTENT/ROOT_URI/Admin/'.$_GET['inFolder'].'/'.$_GET['filename'] , '');
if($FC === false) {
$ret->status = "error";
$ret->msg="Error in creating new group, check name";
}
else {
$ret->status="success";
$ret->msg="New group created successfully";
}
} else $ret->msg="No data to process";
echo json_encode($ret);
?>