Aşağıdaki örnek uygulamada PHP kullanarak çarpım tablosu oluşturulmuştur. Formun içinde bir button ve input ile çarpım tablosu kodlarını ve çıktıyı aşağıda bulabilirsiniz.
PHP Kodu:
<html>
<head>
<title>PHP Çarpım Tablosu Yapımı</title>
</head>
<body>
<form>
<input type=”text” name=”sayi” value=”1″>
<button type=”submit”>Yazdır</button>
</form>
<?PHP
if(isset($_GET[‘sayi’]))
{
$sayi = $_GET[‘sayi’];
for($i=1;$i<=10;$i++)
{
$carpim = $sayi*$i;
echo “<p>{$i} x {$sayi} = {$carpim}</p>”;
}
}
?>
</body>
</html>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<html> <head> <title>PHP Çarpım Tablosu Yapımı</title> </head> <body>
<form> <input type=“text” name=“sayi” value=“1”> <button type=“submit”>Yazdır</button> </form>
<?PHP
if(isset($_GET[‘sayi’])) { $sayi = $_GET[‘sayi’];
for($i=1;$i<=10;$i++) { $carpim = $sayi*$i; echo “<p>{$i} x {$sayi} = {$carpim}</p>”; } }
?>
</body> </html>
|
Çıktı: