42 lines
1.3 KiB
PHP
42 lines
1.3 KiB
PHP
<?php
|
|
include_once(realpath(dirname(__FILE__).'/constantes.php'));
|
|
header('Content-Type: text/html; charset=ISO-8859-1');
|
|
session_start();
|
|
include('getmandataires.php');
|
|
?>
|
|
|
|
<script type="text/javascript" src="./js/thickbox.js"></script>
|
|
<label>Date cessation de paiement </label>
|
|
<input type="text" class="date" name="jugement[datePaie]" size="10" maxlength="10" value="" />
|
|
<span class="left">(Format JJ/MM/AAAA)</span>
|
|
|
|
<label>Administrateur <font color="Red">*</font></label>
|
|
<select name="jugement[admin]" width="50">
|
|
<option value="-" selected>-</option>
|
|
<?php
|
|
foreach ($mandataires as $code=>$lib)
|
|
{
|
|
if (strlen($lib)>64) $lib=substr($lib,0,67).'...';
|
|
echo "<option value=\"$code\">$lib</option>";
|
|
}
|
|
?>
|
|
</select>
|
|
<label>Mandataire <font color="Red">*</font></label>
|
|
<select name="jugement[mand]">
|
|
<option value="-" selected>-</option>
|
|
<?php
|
|
foreach ($mandataires as $code=>$lib)
|
|
{
|
|
if (strlen($lib)>64) $lib=substr($lib,0,67).'...';
|
|
echo "<option value=\"$code\">$lib</option>";
|
|
}
|
|
?>
|
|
</select>
|
|
<?php
|
|
include_once( realpath(dirname(__FILE__)).'/lienMandataireEdit.php' );
|
|
include_once( realpath(dirname(__FILE__)).'/lienMandataire.php' );
|
|
?>
|
|
|
|
<label>Complément, huissier, opposition, etc...</label>
|
|
<input type="text" name="jugement[comp]" size="70" maxlength="255" value="" />
|