<!doctype html>
<html>
<head>
<title>Untitled Document</title>
</head>
<body>
<?php
$x = 5;
while($x>0)
{
echo 'Line' . $x;
echo "<br>";
$x--
}
?>
</body>
</html>
Now, along with the output i want to create 5 submit buttons. one button will be created in each iteration of the loop above. is it possible?
echoout the button html code?