sercantuna adlı üyeden alıntı: mesajı görüntüle
Yanıtınız için teşekkür ederim hocam örneğin a.php sayfasına formu koydum b.php sayfasına çekme değerini yapıştırdığımda çalışır mı?
a.php dosyası

[COLOR=#D9DAE9][FONT=consolas]<form method="post">[/FONT][/COLOR]
[COLOR=#D9DAE9][FONT=consolas]<input name="text" type="text">[/FONT][/COLOR]
[COLOR=#D9DAE9][FONT=consolas]<input type="submit" value="Gönder">[/FONT][/COLOR]
[COLOR=#D9DAE9][FONT=consolas]</form>[/FONT][/COLOR]
b.php dosyası

[COLOR=#D9DAE9][FONT=consolas]<?php[/FONT][/COLOR]
[COLOR=#D9DAE9][FONT=consolas] [/FONT][/COLOR]
[COLOR=#D9DAE9][FONT=consolas]if($_POST){[/FONT][/COLOR]
[COLOR=#D9DAE9][FONT=consolas] [/FONT][/COLOR]
[COLOR=#D9DAE9][FONT=consolas]$text = $_POST["text"];[/FONT][/COLOR]
[COLOR=#D9DAE9][FONT=consolas] [/FONT][/COLOR]
[COLOR=#D9DAE9][FONT=consolas]echo $text;[/FONT][/COLOR]
[COLOR=#D9DAE9][FONT=consolas] [/FONT][/COLOR]
[COLOR=#D9DAE9][FONT=consolas]}[/FONT][/COLOR]
[COLOR=#D9DAE9][FONT=consolas] [/FONT][/COLOR]
[COLOR=#D9DAE9][FONT=consolas]?>[/FONT][/COLOR]
bu şekilde çalışır hocam.