Question
php won't wrap
I have written a form and the subsequent php page. However, when the text moves from the html page it doesn't wrap in the php page despite the echo command within the code.
<form action="expert page ethics 1.php" method="post">What steps lead up to the unethical behavior: <br />
<textarea name="txtInput1" rows="10" cols="60"></textarea><br />
What steps should you take to avoid the delema? <br />
<textarea name="txtInput2" rows="10" cols="60"></textarea><br />
<input type="submit" value="Click here to compare your answers with those of the experts"/></form><h3>Your Response</h3>
<h5>Steps Leading up to Unethical behavior</h5><br/>
<?php echo $_POST["txtInput1"];?><br/>
<h5>What steps should you take to avoid the delema?</h5><br/>
<?php echo $_POST["txtInput2"];?><br/>
</div>
<textarea name="txtInput1" rows="10" cols="60"></textarea><br />
What steps should you take to avoid the delema? <br />
<textarea name="txtInput2" rows="10" cols="60"></textarea><br />
<input type="submit" value="Click here to compare your answers with those of the experts"/></form><h3>Your Response</h3>
<h5>Steps Leading up to Unethical behavior</h5><br/>
<?php echo $_POST["txtInput1"];?><br/>
<h5>What steps should you take to avoid the delema?</h5><br/>
<?php echo $_POST["txtInput2"];?><br/>
</div>
