
14/09/2006, 19:12
|
| | Fecha de Ingreso: septiembre-2005
Mensajes: 78
Antigüedad: 19 años, 6 meses Puntos: 0 | |
radiobutton alguien sabe como se cual opcion me escogieron en el radio button...
<!doctype html public "-//W3C//DTD HTML 4.01//EN">
<?
global $link;
include('funciones/funciones.php');
include('conexion/conexionbd.php');
$link=conectarse();
global $strnombre;
?>
<html>
<head>
<title>Untitled</title>
<meta http-equiv="generator" content="PHP Designer 2005" />
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<form enctype="application/x-www-form-urlencoded" name="laencuesta">
preguna
<br>
si<input type="radio" value="1" name="opc1" />
<br>
no<input type="radio" value="2" name="opc1" />
<br>
que tal<input type="radio" value="3" name="opc1" />
<input type="submit" value="guardar" name="guardar" />
</form>
</body>
</html> |