-
Notifications
You must be signed in to change notification settings - Fork 0
/
reviews.php
66 lines (47 loc) · 1.24 KB
/
reviews.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
55
56
57
58
59
60
61
62
63
64
<?php
/*rating
stars int,
comment text,
from_cusID int references customer_signup(custID),
to_proID int references professional_signup(proID),
*/
session_start();
$_SESSION['proid']=null;
if(!isset($_SESSION['cusid']))
{
$_SESSION['err'] = 4;
header("Location:cus_login.html");
}
$host = 'host=127.0.0.1';
$port = 'port=5432';
$dbname = 'dbname=ServiceKart';
$credential = 'user=postgres password=###alpha@@@123';
$session = pg_connect("$host $port $dbname $credential");
if($session)
{
}else
{
echo "<div class='alert alert-warning alert-dismissible' role='alert'>
<button type='button' class='close' data-dismiss='alert' aria-label='Close'><span aria-hidden='true'>×</span></button>
<strong>Database Error!</strong>
</div>";
}
$cus = $_SESSION['cusid'];
if(isset($_REQUEST['comment']) && isset($_REQUEST['rating']) && isset($_REQUEST['prod']))
{
$comment = $_REQUEST['comment'];
$rating = $_REQUEST['rating'];
$prod = $_REQUEST['prod'];
$sql = "insert into rating (stars,comment,from_cusID,to_proID) values ($rating,'$comment',$cus,$prod)";
$result = pg_query($session,$sql);
if($result)
{
header("Location:profile_professional.php?prod=$prod");
}
}
else
{
$_SESSION['err']=15;
header("Location:homepage.php");
}
?>