| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/dastafiles/admin/functions/ |
Upload File : |
<h2>Διαχείριση ομάδων θέσεων</h2>
<table id="rounded-corner">
<thead>
<tr>
<th>ID</th>
<th>Τίτλος</th>
<th>Διαθέσιμες θέσεις</th>
<th>Εναρξη</th>
<th>Λήξη</th>
</tr>
</thead>
<tbody>
<?php
$position_groups_d=mysql_query("SELECT * FROM ".DB_PREFIX."position_groups ORDER BY start_date DESC, end_date DESC, title ASC");
while($position_groups_i=mysql_fetch_array($position_groups_d))
echo'<tr>
<td>'.$position_groups_i["id"].'</td>
<td>'.$position_groups_i["title"].'</td>
<td>'.$position_groups_i["available_positions"].'</td>
<td>'.$position_groups_i["start_date"].'</td>
<td>'.$position_groups_i["end_date"].'</td>
</tr>';
?>
</tbody>
</table>
<?php
require_once("lib/datatables.php");
?>
<span class="blue_button"><a href="?p=get-available-position-groups">Λήψη ομάδων θέσεων από ΑΤΛΑΝΤΑ</a></span>