Server IP : 51.89.169.208 / Your IP : 216.73.216.9 Web Server : Apache System : Linux ns3209505.ip-198-244-202.eu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : yellowleaf ( 1019) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/yellowleaf/public_html/review_confirmation/ |
Upload File : |
<? require('../connect.php'); session_start(); $styleAbout = 'class="navBoxSel"'; $rev_id=$_GET['id']; $rev_email=$_GET['em']; if(isset($rev_id)&&isset($rev_email)){ $q1 = "DELETE FROM reviews WHERE rev_id='{$rev_id}' AND rev_email='{$rev_email}'"; $r1 = mysql_query($q1) or die(mysql_error()); $success=TRUE; // fail if key is wrong }else{$success=FALSE;} // if no id & email & key then fail ?> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>Review Confirmation - YellowLeaf UK</title> <link href="/style.css" rel="stylesheet" type="text/css"> <script src="/js/js.js"></script> </head> <body> <? include '../header.php'; ?> <table class="tbwdth"> <tr> <td style="line-height:22px;color:#666;" valign="top"> <?if($success==TRUE){?> <span class="pgeHead">Thank you for informing us!</span> <div style="margin-top:20px;"> This review has been removed from YellowLeaf. If this is your first time at YellowLeaf, please take a moment and read our About Us, <a href="/about">click here to read our About Us</a>.<br><br> <a class="button blue" style="border:0px;float:none;margin-top:10px" href="/">Go to YellowLeaf</a> </div> <?}else{?> <span class="pgeHead">ERROR!</span> <div style="margin-top:20px;">This review does not exist!</div> <?}?> </td> </tr> </table> <? include '../footer.php'; ?> </body> </html>