dreamweaver var ise sağdaki formlar menüsünde form vardı biz htmlde formda kullanıyorduk mesaj kutusu faln bi araştır php bilgim yok malesef.
Verial.php <?php $username = $_POST['kullanici']; $password = $_POST['parola']; echo "Kullanıcı Adı: ".$username."<br/>\n"; echo "Parola : ".$password."<br/>"; ?> form.html <html> <body> <form name="test1" id="test1" action="Verial.php" method="post"> Kullanıcı Adı: <input type="text" id="kullanici" name="kullanici" /> Parola : <input type="password" id="parola" name="parola" /> <input type="submit" value="GÖNDER" /> </form> </body> </html> Anladığım form olayı bu...