| 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 : |
<?php
$id=$_GET["id"];
$finished_position_i=mysql_fetch_array(mysql_query("SELECT * FROM ".DB_PREFIX."finished_positions WHERE id='".$id."'"));
?>
<h2>Προβολή ολοκληρωμένης θέσης</h2>
<div class="form">
<form class="niceform">
<fieldset>
<dl>
<dt><label>Τίτλος:</label></dt>
<dd><?php echo $finished_position_i["title"]; ?></dd>
</dl>
<dl>
<dt><label>Περιγραφή:</label></dt>
<dd><?php echo $finished_position_i["description"]; ?></dd>
</dl>
<dl>
<dt><label>Είδος θέσης:</label></dt>
<dd><?php echo $finished_position_i["position_type_int"]==1?"Πλήρους απασχόλησης":"Μερικής απασχόλησης"; ?></dd>
</dl>
<dl>
<dt><label>Φυσικά αντικείμενα:</label></dt>
<dd><?php echo get_physical_objects_finished($finished_position_i["id"]); ?></dd>
</dl>
<dl>
<dt><label>Διάρκεια:</label></dt>
<dd><?php echo $finished_position_i["duration"]; ?></dd>
</dl>
<dl>
<dt><label>Έναρξη υλοποίησης:</label></dt>
<dd><?php echo $finished_position_i["implementation_start_date"]; ?></dd>
</dl>
<dl>
<dt><label>Λήξη υλοποίησης:</label></dt>
<dd><?php echo $finished_position_i["implementation_end_date"]; ?></dd>
</dl>
<dl>
<dt><label>ΦΥΠΑ:</label></dt>
<dd><?php echo get_provider($finished_position_i["provider_id"]); ?></dd>
</dl>
<dl>
<dt><label>Χώρα:</label></dt>
<dd><?php echo get_country($finished_position_i["country_id"]); ?></dd>
</dl>
<dl>
<dt><label>Περιφέρεια:</label></dt>
<dd><?php echo get_prefecture($finished_position_i["prefecture_id"]); ?></dd>
</dl>
<dl>
<dt><label>Πόλη:</label></dt>
<dd><?php echo get_city($finished_position_i["city_id"]); ?></dd>
</dl>
<dl>
<dt><label>Φοιτητής:</label></dt>
<dd><?php echo get_registered_student($finished_position_i["student_id"]); ?></dd>
</dl>
<dl>
<dt><label>Σχόλια ολοκλήρωσης:</label></dt>
<dd><?php echo $finished_position_i["completion_comments"]; ?></dd>
</dl>
<dl>
<dt><label>Ονοματεπώνυμο επόπτη:</label></dt>
<dd><?php echo $finished_position_i["supervisor"]; ?></dd>
</dl>
<dl>
<dt><label>E-mail επόπτη:</label></dt>
<dd><?php echo $finished_position_i["supervisor_email"]; ?></dd>
</dl>
<dl>
<dt><label>Τηλέφωνο επικοινωνίας:</label></dt>
<dd><?php echo $finished_position_i["contact_phone"]; ?></dd>
</dl>
</fieldset>
</form>
</div>