query($sql); if ($result->num_rows > 0) { $member = $result->fetch_assoc(); // Get payment amount setting $payment_amount = get_setting('payment_amount'); // If payment amount is 0, auto-approve the user if ($payment_amount == 0) { // Verify email, approve, and mark as paid (since it's free) $update_sql = "UPDATE members SET is_verified = 1, is_approved = 1, payment_status = 1, verification_token = NULL WHERE id = " . $member['id']; } else { // Just verify email, admin approval needed $update_sql = "UPDATE members SET is_verified = 1, verification_token = NULL WHERE id = " . $member['id']; } if ($conn->query($update_sql)) { if ($payment_amount == 0) { $success = "Email verified successfully! Your account is now active. You can login and start exploring survey sites."; } else { $success = "Email verified successfully! Please check the payment instructions on the next page."; } } else { $error = "Failed to verify email. Please try again."; } } else { $error = "Invalid or expired verification link."; } } else { $error = "No verification token provided."; } $page_title = 'Email Verification'; include 'includes/header.php'; ?>
🎉 Welcome to Paid Survey Hub India! Your account is ready.
Login to DashboardNext step: Complete your one-time payment to get lifetime access.
Login & View Payment Details