MOON
Server: Apache/2.2.34 (Unix) mod_ssl/2.2.34 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 FrontPage/5.0.2.2635
System: Linux server.asjudinet.com 2.6.32-042stab141.3 #1 SMP Fri Nov 15 22:45:34 MSK 2019 i686
User: asjudine (504)
PHP: 5.2.17
Disabled: NONE
Upload Files
File: /home/asjudine/public_html/prueba4.php
<?php

require_once("Conectarse.php");
$sql = mysql_query('SELECT nombre_completo FROM asjudinet_abogados WHERE vigentes="1"');
			if (!$sql) {
				die('Invalid query hhh: ' . mysql_error());
			}  
$row_sql = mysql_fetch_assoc($sql);
$totalRows_sql = mysql_num_rows($sql);  
?>


<html>
<script type="text/javascript" language="Javascript">
<!-- Begin
document.oncontextmenu = function(){return false}
// End -->
</script>

<script language="JavaScript1.2">

function disabletext(e){
return false
}

function reEnable(){
return true
}

//if the browser is IE4+
document.onselectstart=new Function ("return false")

//if the browser is NS6
if (window.sidebar){
document.onmousedown=disabletext
document.onclick=reEnable
}
</script>



<body bgcolor="BLACK">
<center> <img src="ELEMENTOS\cabezote.gif" WIDTH=90% > </center>

<center>

<h1><font face="algerian" color="silver"><b> USUARIO </b></font> 
<form action="registro.php" method ="POST">
<table border="5" width="10"  bgcolor="silver">
<tr><td>
CEDULA:
</td><td>
<input type="text" name="Cedula">
 </td>
</tr>
<tr><td>
NOMBRE ABOGADOS:
</td><td>
<select name="Cedula">
            <option value="">--SELECCIONE EL NOMBRE DEL DESTINATARIO--</option>
            <?php
     do {  
?>
            <option value="<?php echo $row_sql['cedula'];?>"><?php echo $row_sql['nombre_completo']?></option>
            <?php
} while ($row_sql = mysql_fetch_assoc($sql));
  $rows = mysql_num_rows($sql);
  if($rows > 0) {
      mysql_data_seek($sql, 0);
       $row_sql = mysql_fetch_assoc($sql);
  }
?>
          </select> </td> 
</tr>
<tr><td>
</font>
</table>
<br>
	    <input name="consultar" id="consultar" type="submit" class="Estilo51" value="Consultar">
</form>
<FORM>
</Form>
<br>

</html>

}
?>