ADİL YILDIZ HAYATIN BİR KÖŞESİNDEN TUTUNAN HERKES İÇİN HERŞEY

27Mar/080

PHP 4. Ders Örnekleri

link.html

1
2
3
4
5
6
7
8
<html>
<head>
<title>Link İle Bilgi Gönderme</title>
</head>
<body>
<a href="islem.php?sayi1=10">Sayı Gönder</a>
</body>
</html>

islem.php

1
2
3
4
5
<?php
$sayi2=15;
$sonuc=$sayi2+$_GET["sayi1"];
echo $_GET["sayi1"]."+".$sayi2."=".$sonuc;
?>


form_get.html

1
2
3
4
5
6
7
8
9
10
<form action="formisle.php" method="GET">
 
<input type="text" name="sayi1" value="0"><br>
<input type="text" name="sayi2" value="0"><br>
 
<input type="submit" name="gonder" value="Topla">
<input type="submit" name="gonder" value="Çıkar">
<input type="submit" name="gonder" value="Çarp">
<input type="submit" name="gonder" value="Böl">
</form>

formisle_get.php

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?
if($_GET["gonder"]=="Topla"){
$sonuc=$_GET["sayi1"]+$_GET["sayi2"];
}
 
elseif($_GET["gonder"]=="Çıkar"){
$sonuc=$_GET["sayi1"]-$_GET["sayi2"];
}
 
elseif($_GET["gonder"]=="Çarp"){
$sonuc=$_GET["sayi1"]*$_GET["sayi2"];
}
 
elseif($_GET["gonder"]=="Böl"){
$sonuc=$_GET["sayi1"]/$_GET["sayi2"];
}
echo $sonuc;
?>

formisle2_get.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
<form action="formisle.php" method="GET">
 
<input type="text" name="sayi1" value="0"><br>
<input type="text" name="sayi2" value="0"><br>
 
<input type="submit" name="gonder" value="Topla">
<input type="submit" name="gonder" value="Çıkar">
<input type="submit" name="gonder" value="Çarp">
<input type="submit" name="gonder" value="Böl">
</form>
 
<?
if($_GET["gonder"]=="Topla"){
$sonuc=$_GET["sayi1"]+$_GET["sayi2"];
}
 
elseif($_GET["gonder"]=="Çıkar"){
$sonuc=$_GET["sayi1"]-$_GET["sayi2"];
}
 
elseif($_GET["gonder"]=="Çarp"){
$sonuc=$_GET["sayi1"]*$_GET["sayi2"];
}
 
elseif($_GET["gonder"]=="Böl"){
$sonuc=$_GET["sayi1"]/$_GET["sayi2"];
}
echo $sonuc;
?>

Posted by Adil YILDIZ

Filed under: PHP Leave a comment
Comments (0) Trackbacks (0)

No comments yet.


Leave a comment

(required)

Spam protection by WP Captcha-Free

No trackbacks yet.