@salihads; Bu örnek sana seçim kutusu kullanımı hakkında bilgi sağlayacaktır.

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8" />
	</head>
	<body>
		<form method="post">
			<label for="user_type">Üyelik Tipi:</label>
			<select id="user_type" name="user_type">
				<option value="personal">Bireysel</option>
				<option value="business">Kurumsal</option>
			</select>
			<button type="submit">Gönder</button>
		</form>
		<div class="results">
			<?php
				
				echo "<pre>";
				
				print_r($_POST);
				
				echo "</pre>";
				
				if(isset($_POST["user_type"]))
				{
					$user_types = array("personal" => "Bireysel", "business" => "Kurumsal");
					
					if(array_key_exists($_POST["user_type"], $user_types))
					{
						echo "Seçilen üyelik tipi: <strong>" . $user_types[$_POST["user_type"]] . "</strong>";
					}
				}
				
			?>
		</div>
	</body>
</html>