18 lines
475 B
PHP
18 lines
475 B
PHP
<?php
|
|
include('includes/config/config.php');
|
|
include('includes/functions.php');
|
|
include('log_entry.php');
|
|
|
|
$client_location_options = "";
|
|
|
|
$sql = "SELECT * FROM training_batch_master WHERE status = 'active'";
|
|
$result = mysqli_query($conn, $sql);
|
|
while ($row = mysqli_fetch_assoc($result)) {
|
|
$r_id = $row['batch_id'];
|
|
$r_name = $row['batch_name'];
|
|
$client_location_options .= "<option value=$r_id>$r_name</option>";
|
|
}
|
|
|
|
|
|
echo json_encode($client_location_options);
|