Код: Выделить всё
<form method='GET' action='GET.php' type='text'>
Код: Выделить всё
<html>
<head><title></title></head>
<body>
<form method='GET' action='GET.php' type='text'>
<input name='name' type='text' >
<input name='age' type='text' >
</form>
<?php
$name='Gen_r_questions';
$age='12';
echo $_GET['name'];
echo '---------';
echo $_GET['age'];
?>
</body>
</html>