Skip to content
Snippets Groups Projects
Commit 211a2486 authored by Aldrich Valentino Halim's avatar Aldrich Valentino Halim
Browse files

fixed routing page from login to profile and order page

parent 2293c97c
1 merge request!42Projekers - 13515051 - Girvandi Ilyas
......@@ -80,5 +80,5 @@ if(isset($_POST['pickup'])){
$comment = $_POST['comment'];
$transaction = new Order();
$transaction->setTransaction($userId, $driverId, $pickup, $destination, $date, $rating, $comment);
header('Location: ../view/dashboard.php?id='.$userId);
header('Location: ../view/order.php?id='.$userId);
}
......@@ -46,7 +46,7 @@
</div>
<div>
<div>
<a class="back" href="dashboard.php?id=<?php echo $_GET['id'];?>">BACK</a>
<a class="back" href="profile.php?id=<?php echo $_GET['id'];?>">BACK</a>
<input type="submit" value="SAVE" class="save" name="submit">
</div>
</div>
......
......@@ -7,9 +7,9 @@
$result = $result->fetch_assoc();
if($count == 1) {
if ($result['isDriver']) {
header("location:dashboard.php?id=" . $result["id"]);
header("Location: profile.php?id=" . $result["id"]);
} else {
header("location:dashboard.php?id=" . $result["id"]);
header("Location: order.php?id=" . $result["id"]);
}
} else {
echo "<script>alert('Username dan/atau password yang anda masukkan salah.')</script>";
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment