Thanks for reminding me regarding the validation. I'll do it before finalizing 🙂
I did as you told me, thanks for that, here is my renew code:
<?php
$display = array();
$answer = $_POST['answer'];
for( $ctr = 1 ; $ctr <= $answer ; $ctr++)
{
echo "Name: <input type='text'> Description: <input type='text'>";
echo "<br />";
}
?>
<html>
<head>
<title>Show Display</title>
</head>
<body>
</body>
</html>
Now it does print, but what if I want it to be printed on the html part how can I do this? Its because I want to stick with my style in the html, if I print it on the for loop it wont follow the style of the html.