Teşekkürler
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<form action="index3.php" method="POST">
<input type="text" name="yazi">
<input type="text" name="sayi">
<input type="submit" name="onay">
</body>
</html>
//Forum Sayfasının kodları
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<?php
$kac_defa=$_POST["sayi"];
$cikti=$_POST["yazi"];
for ($i=0; $i < $kac_defa; $i++) {
echo $cikti;?>
<br>
<?php } ?>
</body>
</html>