Parašė IPaulius· 2011 Geg. 16 15:05:30
#1
Žiūrėkit. Turiu tokią lentelę.
<form action="geras1.php" method="post">
<p id="bandymas">Name:</p> <input type="text" name="fname" />
<p id="bandymas">Password:</p> <input type="text" name="password" />
<input type="submit" value="Siusti" />
</form>
Ką dabar reikia rašyti geras1.php ,kad gaučiau tai ką į inputus įvedu?
Aš taip bandau ,bet nesigauna :
<html>
<body>
Welcome: <?php echo $_POST["fname"]; ?>!<br />
Your password is: <?php echo $_POST["password"]; ?>
</body>
<html>