| 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=$id ? $id : $_GET["id"];
$provider_i=mysql_fetch_array(mysql_query("SELECT * FROM ".DB_PREFIX."providers WHERE id='".$id."'"));
?>
<h2>Επεξεργασία φορέα</h2>
<div class="form">
<form action="?p=edit-provider" method="post" class="niceform">
<fieldset>
<dl>
<dt><label>Όνομα:</label></dt>
<dd><?php echo $provider_i["name"]; ?></dd>
</dl>
<dl>
<dt><label>ΑΦΜ:</label></dt>
<dd><?php echo $provider_i["afm"]; ?></dd>
</dl>
<dl>
<dt><label>Όνομα επικοινωνίας:</label></dt>
<dd><?php echo $provider_i["contact_name"]; ?></dd>
</dl>
<dl>
<dt><label>Τηλέφωνο επικοινωνίας:</label></dt>
<dd><?php echo $provider_i["contact_phone"]; ?></dd>
</dl>
<dl>
<dt><label>E-mail επικοινωνίας:</label></dt>
<dd><?php echo $provider_i["contact_email"]; ?></dd>
</dl>
<dl>
<dt><label>Δημόσιο ή ιδιωτικό:</label></dt>
<dd><input type="text" name="dimosio_idiotiko" size="54" value="<?php echo $provider_i["dimosio_idiotiko"]; ?>" /></dd>
</dl>
<dl>
<dt><label>ΔΟΥ φορέα:</label></dt>
<dd><input type="text" name="provider_doy" size="54" value="<?php echo $provider_i["provider_doy"]; ?>" /></dd>
</dl>
<dl>
<dt><label>Διεύθυνση φορέα:</label></dt>
<dd><input type="text" name="provider_address" size="54" value="<?php echo $provider_i["provider_address"]; ?>" /></dd>
</dl>
<dl>
<dt><label>Πόλη φορέα:</label></dt>
<dd><input type="text" name="provider_city" size="54" value="<?php echo $provider_i["provider_city"]; ?>" /></dd>
</dl>
<dl>
<dt><label>ΤΚ φορέα:</label></dt>
<dd><input type="text" name="provider_tk" size="54" value="<?php echo $provider_i["provider_tk"]; ?>" /></dd>
</dl>
<dl>
<dt><label>Ιδιότητα επιχείρησης:</label></dt>
<dd><input type="text" name="business_type" size="54" value="<?php echo $provider_i["business_type"]; ?>" /></dd>
</dl>
<dl>
<dt><label>Υπεύθυνος επικοινωνίας:</label></dt>
<dd><input type="text" name="contact_responsible" size="54" value="<?php echo $provider_i["contact_responsible"]; ?>" /></dd>
</dl>
<dl>
<dt><label>Τηλέφωνο φορέα:</label></dt>
<dd><input type="text" name="provider_tel" size="54" value="<?php echo $provider_i["provider_tel"]; ?>" /></dd>
</dl>
<dl>
<dt><label>Fax φορέα:</label></dt>
<dd><input type="text" name="provider_fax" size="54" value="<?php echo $provider_i["provider_fax"]; ?>" /></dd>
</dl>
<dl>
<dt><label>Web φορέα:</label></dt>
<dd><input type="text" name="provider_url" size="54" value="<?php echo $provider_i["provider_url"]; ?>" /></dd>
</dl>
<dl>
<dt><label>Ιδιότητα επόπτη φορέα:</label></dt>
<dd><input type="text" name="supervisor_property" size="54" value="<?php echo $provider_i["supervisor_property"]; ?>" /></dd>
</dl>
<dl>
<dt><label>Τηλέφωνο επόπτη:</label></dt>
<dd><input type="text" name="supervisor_tel" size="54" value="<?php echo $provider_i["supervisor_tel"]; ?>" /></dd>
</dl>
<dl>
<dt><label>Κινητό επόπτη φορέα:</label></dt>
<dd><input type="text" name="supervisor_mob" size="54" value="<?php echo $provider_i["supervisor_mob"]; ?>" /></dd>
</dl>
<dl>
<dt><label>E-mail επόπτη:</label></dt>
<dd><input type="text" name="supervisor_email" size="54" value="<?php echo $provider_i["supervisor_email"]; ?>" /></dd>
</dl>
<dl class="submit">
<input type="hidden" name="id" value="<?php echo $id; ?>" />
<input type="submit" name="submit" id="submit" value="Επεξεργασία" />
</dl>
</fieldset>
</form>
</div>