no comprendo mucho que deseas hacer pero le modifique algunas cositas espero y sea lo que buscas de lo contrario postea aqui ;)
Código PHP:
Ver original<?
include("sql.php");
$link = conecta_sql();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<?
//inicializo pregunta_id para mostrar la primera pregunta de mi BD
$pregunta_id=1;
//El if de si apreta siguiente o no..
if(isset($_POST["btnSiguiente"])){
$pregunta_id++;
echo $pregunta_id;
}else{
?>
<form method="post" action="index.php">
<table width="208" border="1">
<?
$consulta = "select * from encuesta_pregunta_opciones where op_pre_id=$pregunta_id";
?>
<? do{ ?>
<tr>
<td width="36"><label>
<input type="radio" name="radio" id="radio" value="radio" />
</label></td>
<td width="124"><? echo $fila['op_des']?></td>
</tr>
<tr>
<td><label>
<input type="submit" name="btnAnterior" id="btnAnterior" value="Anterior" />
</label></td>
<td> </td>
<td><input name="btnSiguiente" type="button" value="Siguiente" /></td>
</tr>
</table>
</form>
<? } ?>
</body>
</html>