Server IP : 184.154.167.98 / Your IP : 3.138.137.175 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/oficios/sistema/ |
Upload File : |
<?php require('includes/config.php'); //collect values from the url $memberID = trim($_GET['x']); $active = trim($_GET['y']); //if id is number and the active token is not empty carry on if(is_numeric($memberID) && !empty($active)){ //update users record set the active column to Yes where the memberID and active value match the ones provided in the array $stmt = $db->prepare("UPDATE members SET active = 'Yes' WHERE memberID = :memberID AND active = :active"); $stmt->execute(array( ':memberID' => $memberID, ':active' => $active )); //if the row was updated redirect the user if($stmt->rowCount() == 1){ //redirect to login page header('Location: login.php?action=active'); exit; } else { echo "ya has activado tu cuenta."; } } ?>