aqui les dejo el codigo, esta hecho en php, pero quiero que aparesca un popup disiendo que debe llenar todo los datos...algo asi, super simple pero no me manejo mucho en esto....
Código PHP:
<?
function Test16PF($offset=0){
$nfilas=25;
if(($offset>0)&&($offset<200)){
$numpag=$offset/$nfilas+1;
} else {
$offset=0;
$numpag=1;
}
$preguntas='';
$db=conexion();
$sql="SELECT test_16pf_5.numpregunta, test_16pf_5.pregunta, test_16pf_5.Resp_A, test_16pf_5.Resp_B, test_16pf_5.Resp_C FROM test_16pf_5";
$rs=$db->SelectLimit($sql,$nfilas,$offset);
if($rs){
$control=$offset;
while(!$rs->EOF){
$codinstrucc=0;
if($control==0){
$codinstrucc=1;
}
if($control==170){
$codinstrucc=2;
}
$control++;
if($codinstrucc>0){
$sql2="SELECT instrucciones FROM inst_test_16pf_5 WHERE codinstrucc='".$codinstrucc."'";
$rs2=$db->Execute($sql2);
if($rs2){
if($rs2->RecordCount()>0){
$preguntas.=$rs2->fields("instrucciones");
}
}
}
$numero=$rs->fields("numpregunta");
$pregunta=$rs->fields("pregunta");
$resp1=$rs->fields("Resp_A");
$resp2=$rs->fields("Resp_B");
$resp3=$rs->fields("Resp_C");
$preguntas.='<tr class="tbh_azul" valign="top">
<td width="25" align="right">'.$numero.'. </td>
<td>'.$pregunta.'</td>
</tr>
<tr>
<td width="25"><input type="radio" name="r'.$numero.'" value="1"></td>
<td>'.$resp1.'</td>
</tr>
<tr>
<td width="25"><input type="radio" name="r'.$numero.'" value="2"></td>
<td>'.$resp2.'</td>
</tr>
<tr>
<td width="25"><input type="radio" name="r'.$numero.'" value="3"></td>
<td>'.$resp3.'</td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>';
$rs->MoveNext();
}
$offset=$offset+$nfilas;
$html='<form action="testpers.php" method="post" name="frm_test" id="frm_test">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center">Página '.$numpag.'<input name="offset" type="hidden" value="'.$offset.'"></td>
</tr>
<tr>
<td><table width="80%" border =0 cellpadding="0" cellspacing="0">
'.$preguntas.'
</table></td>
</tr>
<tr>
<td align="center">
<input name="bt_sig" type="submit" id="bt_sig" value="Siguiente »" class="boton">
<input type="hidden" name="totalpreg" value="'.$numero.'">
</td>
</tr>
</table>
</form>';
return $html;
}
}
?>