File: /var/www/selfanalyse/emu-personality-test/start_test.php
<?php
include '../wp-config.php';
if(is_user_logged_in()) {
global $current_user;
$user_id = $current_user->ID;
$getUserDetails = $wpdb->get_row("SELECT ud.current_education_level FROM $PSY_USERS_DETAILS as ud WHERE ud.user_id='$user_id'");
$class_id = $getUserDetails->current_education_level;
?>
<h2>
Start Any EMU Personality Test by enter subscription id
</h2>
<form action="/emu-personality-test/" method="POST">
<input type="text" name="sID" value="">
<input type="hidden" name="class_id" value="<?php echo $class_id ?>">
<button type="submit" class="btn btn-primary">Start Test</button>
</form>
<?php
}