forked from jashgopani/Shuttergram
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathuploadScript.php
27 lines (24 loc) · 845 Bytes
/
uploadScript.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
<?php
session_start();
require("conn.php");
if(isset($_POST['post'])){
$postUser = $_SESSION['username'];
$media = $_SESSION['fileDestination'];
$caption = $_POST['caption'];
$query = "INSERT into post(postUser,media,caption,postTime) VALUES('$postUser','$media','$caption',CURRENT_TIMESTAMP)";
if(mysqli_query($conn,$query)){
header("Location:timeline.php");
}else{
echo mysqli_error();
header("Location:upload.php");
}
}else if(isset($_POST['cancel'])){
$postUser = $_SESSION['username'];
$media = $_SESSION['fileDestination'];
$caption = $_POST['caption'];
unlink($media);
header("Location:upload.php");
}
unset($_SESSION['fileDestination']);
unset($_SESSION['fileTempName']);
?>