-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshared.php
54 lines (44 loc) · 1.77 KB
/
shared.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Delete File</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="CSS/stylesheet.css" />
<link href="https://fonts.googleapis.com/css?family=Heebo:300" rel="stylesheet">
<link rel="icon" href="LogoIcon.png" type="image/png" sizes="20x20">
</head>
<body>
<div class="back-butt">
<a href="home.php" class="previous round">‹</a>
</div>
<section class="file-load">
<?php
session_start();
$username= $_SESSION['login_user'];
if (isset( $_SESSION['login_user'])){
// Grab user data from the database using the user_id
// Let them access the "logged in only" pages
} else {
// Redirect them to the login page
header("Location: login.php");
exit();
}
if($_SERVER['REQUEST_METHOD']=='POST'){
if(isset($_POST['shared'])){
$selectOption = $_POST['sharedUser'];
$value = $_POST['shared'];
//copy folder into shared user's folder
$path = sprintf("/home/stevenlee/Module2Info/uploads/%s/%s", $username, $value);
$newPath = sprintf("/home/stevenlee/Module2Info/uploads/%s/%s", $selectOption, $value);
if (!copy($path, $newPath)) {
echo "Failed to copy " .$value. " with " . $selectOption;
}else{
echo $value . " has been shared with " .$selectOption;
}
}
}
?>
</section>
</body>
</html>