PHP Form işlemleri

Php ile form işlemleri form.php ile texboxlar’dan gönderilen isim soyisimi isle.php’de çekip ekrana yazdırma.

form.php

—————————————————————

[php]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="tr" http-equiv="Content-Language" />
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>AD</title>
</head>
<body>
<center><form action="isle.php" method="post">
<table style="width: 20%">
<tr>
<td style="width: 67px">AD</td>
<td><input name="ad" type="text" /></td>
</tr>
<tr>
<td style="width: 67px">SOYAD</td>
<td><input name="soyad" type="text" /></td>
</tr>
<tr>
<td style="width: 67px">&nbsp;</td>
<td><input name="Submit1" type="submit" value="submit" />&nbsp;</td>
</tr>
</table>
</form></center>
</body>
</html>[/php]

—————————————————————

isle.php

[php]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>isle.php</title>
</head>

<body>
<?php
echo "Ad Soyad :"."$_POST[ad]"." "."$_POST[soyad]";
?>
</body>

</html>[/php]

http://www.bleier-online.de/blogs/ohne/tuotekategoria/kondylooma/index.html

Bu yazı PHP kategorisine gönderilmiş ve , , ile etiketlenmiş. Kalıcı bağlantıyı yer imlerinize ekleyin.

Bir yanıt yazın

E-posta adresiniz yayınlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir