06.05.2013, 05:28
$_POST["Text"];
I want, to send information to my php file. I want to send player inputtext and get that inputtext with Post methode. In php language you can do it:
But how i can POST player inputtext in my php file?
I want, to send information to my php file. I want to send player inputtext and get that inputtext with Post methode. In php language you can do it:
Code:
<form action="welcome.php" method="post"> Name: <input type="text" name="fname"> Age: <input type="text" name="age"> <input type="submit"> </form>
Code:
Welcome <?php echo $_POST["fname"]; ?>!<br> You are <?php echo $_POST["age"]; ?> years old.