20 lines
659 B
PHP
20 lines
659 B
PHP
<?php
|
|
|
|
?>
|
|
<input type="hidden" name="method" value="name">
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Nom : </label>
|
|
<div class="field"><input type="text" name="frmRecherche[Name]" maxlength="30" value=""></div>
|
|
</div>
|
|
<?php if($WithCity==TRUE){ ?>
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Ville : </label>
|
|
<div class="field"><input type="text" name="frmRecherche[City]" maxlength="100" value=""></div>
|
|
</div>
|
|
<?php }?>
|
|
<?php if($WithPostCode==TRUE){ ?>
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">PostCode : </label>
|
|
<div class="field"><input type="text" name="frmRecherche[PostCode]" maxlength="10" value=""></div>
|
|
</div>
|
|
<?php } ?>
|