ahora mismo lo que obtengo es un on, de que esta activado,y me he quedado un poco bloqueado.
Código:
<html>
<body>
<?
if(!$_POST){
mysql_connect('localhost','root','123451234512345') or die(mysql_error());
mysql_select_db("agenda") or die(mysql_error());
echo '<form name ="radiobutton" method ="POST" action="busprodclte.php">';
echo '<table>';
$productos=mysql_query("select * from productos");
while($muestra=mysql_fetch_array($productos)){
echo '<tr><td>'.$muestra["nomprod"].'<INPUT TYPE="radio" NAME="elegido"/></td></tr>';
}
echo '</table>';
echo '<input type ="submit" value ="Buscar">';
echo '</form>';
}else{
$elegido=$_POST['elegido'];
echo "$elegido";
}
?>
</body>
</html>