<?php
define('IBVTE_ACCESS', true);
require 'config.php';
$pdo = getDB();
$stmt = $pdo->prepare("SELECT id, application_status FROM affiliation_applications WHERE id = 7");
$stmt->execute();
print_r($stmt->fetchAll());
