PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
<html>
<head>
<title>Testing Page</title>
</head>
<body>
<form action="tail2.php" method="POST">
Enter your name: <input type="text" name="name" /><br><br>
<p>Do you have a life?<br><br>
yes
<input name="button1" value="yes" type="radio" id="button1"></p>
<p>no<input name="button1" value="no" type="radio" id="button1"></p>
<input name="Get Code!" type="submit" id="Get Code!" value="Find out what I have to say" />
</form>
</body>
</html>
when using POST to transfer data from a form the data will be contained in this variable $_POST['inputnamehere'] same goes for GET so you would use $_GET['inputnamehere'].