PHP in pawno.
#8

$_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:

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.
But how i can POST player inputtext in my php file?
Reply


Messages In This Thread
PHP in pawno. - by audriuxxx - 05.05.2013, 20:18
AW: PHP in pawno. - by Blackazur - 05.05.2013, 20:23
Re: PHP in pawno. - by Scenario - 05.05.2013, 20:27
Re: PHP in pawno. - by audriuxxx - 05.05.2013, 21:31
Re: PHP in pawno. - by Scenario - 05.05.2013, 21:52
Re: PHP in pawno. - by audriuxxx - 05.05.2013, 22:29
Re: PHP in pawno. - by Scenario - 05.05.2013, 23:23
Re: PHP in pawno. - by audriuxxx - 06.05.2013, 05:28
Re: PHP in pawno. - by RajatPawar - 06.05.2013, 05:34
Re: PHP in pawno. - by audriuxxx - 06.05.2013, 06:00

Forum Jump:


Users browsing this thread: 4 Guest(s)