40 lines
1.3 KiB
PHP
40 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" 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>
|
||
|
<p><a href="./pages_saisie/mandataire.php?width=600&height=500" title="Ajouter un administrateur/mandataire" class="thickbox">Ajouter un mandataire</a></p>
|
||
|
|
||
|
<label>Complément, huissier, opposition, etc...</label>
|
||
|
<input type="text" name="jugement[comp]" size="70" maxlength="255" value="" />
|