<?php
include('../dbcon.php');
include('../session.php');
if (isset($_POST['delete_user'])){
$id=$_POST['selector'];
$class_id = $_POST['teacher_class_id'];
$get_id=$_POST['get_id'];
$N = count($id);
for($i=0; $i < $N; $i++)
{
$result = mysql_query("select * from files where file_id = '$id[$i]' ")or die(mysql_error());
while($row = mysql_fetch_array($result)){
$fname = $row['fname'];
$floc = $row['floc'];
$fdesc = $row['fdesc'];
$uploaded_by = $row['uploaded_by'];
mysql_query("insert into files (floc,fdatein,fdesc,class_id,fname,uploaded_by) value('$floc',NOW(),'$fdesc','$class_id','$fname','$uploaded_by')")or die(mysql_error());
}
}
?>
<script>
window.location = 'downloadable.php<?php echo '?id='.$get_id; ?>';
</script>
<?php
}
if (isset($_POST['copy'])){
$id=$_POST['selector'];
$N = count($id);
for($i=0; $i < $N; $i++)
{
$result = mysql_query("select * from files where file_id = '$id[$i]' ")or die(mysql_error());
while($row = mysql_fetch_array($result)){
$fname = $row['fname'];
$floc = $row['floc'];
$fdesc = $row['fdesc'];
mysql_query("insert into teacher_backpack (floc,fdatein,fdesc,teacher_id,fname) value('$floc',NOW(),'$fdesc','$session_id','$fname')")or die(mysql_error());
}
}
?>
<script>
window.location = 'backpack.php';
</script>
<?php
}
?>
<?php
if (isset($_POST['share'])){
$id=$_POST['selector'];
$teacher_id = $_POST['teacher_id1'];
echo $teacher_id ;
$N = count($id);
for($i=0; $i < $N; $i++)
{
$result = mysql_query("select * from files where file_id = '$id[$i]' ")or die(mysql_error());
while($row = mysql_fetch_array($result)){
$fname = $row['fname'];
$floc = $row['floc'];
$fdesc = $row['fdesc'];
mysql_query("insert into teacher_shared (floc,fdatein,fdesc,teacher_id,fname,shared_teacher_id) value('$floc',NOW(),'$fdesc','$session_id','$fname','$teacher_id')")or die(mysql_error());
}
}
?>
<script>
window.location = 'tambah_share_file.php';
</script>
<?php
}
?>