20 lines
		
	
	
		
			728 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			20 lines
		
	
	
		
			728 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| 
								 | 
							
								<!DOCTYPE html>
							 | 
						||
| 
								 | 
							
								<html>
							 | 
						||
| 
								 | 
							
									<head>
							 | 
						||
| 
								 | 
							
										<title>Encuesta</title>
							 | 
						||
| 
								 | 
							
									</head>
							 | 
						||
| 
								 | 
							
									<body>
							 | 
						||
| 
								 | 
							
										<h1>Encuesta (Formulario)</h1>
							 | 
						||
| 
								 | 
							
										<form action="resultado.php" method="post" >
							 | 
						||
| 
								 | 
							
											Indique cuál es su opción preferida:<br />
							 | 
						||
| 
								 | 
							
											<input type="radio" name="favorite" value="docker" >Docker</input><br />
							 | 
						||
| 
								 | 
							
											<input type="radio" name="favorite" value="dns" >DNS</input><br />
							 | 
						||
| 
								 | 
							
											<input type="radio" name="favorite" value="php" >PHP</input><br />
							 | 
						||
| 
								 | 
							
											<input type="radio" name="favorite" value="mysql" >MySQL</input><br />
							 | 
						||
| 
								 | 
							
											<input type="radio" name="favorite" value="simfony" >Simfony</input><br />
							 | 
						||
| 
								 | 
							
											<input type="radio" name="favorite" value="wordpress" >WordPress</input><br />
							 | 
						||
| 
								 | 
							
											<input type="submit" /><input type="reset" />
							 | 
						||
| 
								 | 
							
										</form>
							 | 
						||
| 
								 | 
							
									</body>
							 | 
						||
| 
								 | 
							
								</html>
							 |