Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
revealability
/
Paypal
:
payment-successful.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php session_start(); //Include DB configuration file require_once("../admin/database.php"); $user_id=$_SESSION['user_id']; $order_id=$_SESSION['order_id']; $query="UPDATE orders SET payment_status='paid' where user_id='$user_id' AND order_id='$order_id'"; $run=db::query($query); $query="DELETE from temp_cart where user_id='$user_id'"; $del=db::query($query); echo "<script>location='../final_message.php?payment_paypal=paid'</script>"; ?>