oops sorry.. i need to add it to multi line, here the form file
<?php
if (!isset($_POST['submit'])) {
echo "<form method=\"post\" action=\"" .$_SERVER['PHP_SELF']. "\">";
echo "Info Box:<textarea name=\"infoBox\" /></textarea><br />";
echo "<input type=\"submit\" value=\"submit\" name=\"submit\" />";
echo "</form>";
}
else {
$infoBox = $_POST["infoBox"];
echo "<textarea>";
echo $infoBox;
echo "</textarea>";
}
?>
example input file:
test
hello
world
and the output should be
<b>test</b>
<b>hello</b>
<b>world</b>
============================================================
hello, i need to add prefix and suffix in php like
hello
to
<b>hello</b>
thanks for the response.