MOON
Server: Apache
System: Linux kvm.asjudinet.com 5.14.0-611.54.6.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 04:23:18 EDT 2026 x86_64
User: asjudine (1001)
PHP: 8.0.30
Disabled: exec,passthru,shell_exec,system
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>

}
?>