mirror of
https://github.com/ZeJMaN/LBCAlerte_ynh.git
synced 2025-06-07 13:05:30 +02:00
17 lines
506 B
PHTML
17 lines
506 B
PHTML
<h2>
|
|
<?php echo htmlspecialchars($ad->getTitle()); ?>
|
|
</h2>
|
|
|
|
<form action="" method="post">
|
|
<p><label for="comment">Votre note :</label></p>
|
|
<p>
|
|
<textarea name="comment" cols="75" rows="5"><?php
|
|
echo htmlspecialchars($ad->getComment()); ?></textarea>
|
|
<br />
|
|
<p>
|
|
<input type="submit" value="Enregistrer" />
|
|
| <a href="?mod=annonce&a=view&id=<?php
|
|
echo $ad->getId(); ?>">annuler</a>
|
|
</p>
|
|
</p>
|
|
</form>
|