Source: lesson_16_function_nl2br.php | Résultat |
<?php if (!isset($_POST['myLife'])) { echo "<b>Saisir un texte sur plusiers lignes"; echo "<form action='../commons/show_exercises.php? exercise=lesson_16_function_nl2br.php' method=post>"; //echo "<form action=$_SERVER[PHP_SELF] method=post>"; echo "<textarea name='myLife' cols=30 rows=4>Racontez ici</textarea>"; echo "<input type='submit' value='valider'></form>"; } else { echo "Le texte sans le format <p>"; echo "<table border=1><tr><td>". ($_POST['myLife'])."</table><p></p>"; echo "Le texte avec le format <p>"; echo "<table border=1><tr><td>". nl2br($_POST['myLife'])."</table>"; } ?>
| Saisir un texte sur plusiers lignes
|