10 lines
130 B
PHP
10 lines
130 B
PHP
|
<?php
|
||
|
print_r($_POST);
|
||
|
print_r($_GET);
|
||
|
print_r($_REQUEST);
|
||
|
|
||
|
?>
|
||
|
<form method="post">
|
||
|
<input name=txt>
|
||
|
<input type="submit">
|
||
|
</form>
|