File: /home/asjudine/public_html/prueba_jobany9.php
<html>
<!--
<body>
<?php /*
require_once("mainfile.php");
include ("config.php");
global $dbi;
mysql_select_db("dbi");
$sql = ("DELETE FROM actuaciones WHERE id=24703");
$result = mysql_query($sql);
$result = mysql_query("SELECT cedula,numero_proceso FROM actuaciones ORDER BY numero_proceso");
echo "<table border = '1'> \n";
echo "<tr> \n";
echo "<td><b>Cedula</b></td> \n";
echo "<td><b>Proceso No.</b></td> \n";
echo "</tr> \n";
while ($row = mysql_fetch_row($result)){
echo "<tr> \n";
echo "<td>$row[0]</td> \n";
echo "<td>$row[1]</td> \n";
echo "</tr> \n";
}
echo "</table> \n";
*/
?>
</body>
</html>
-->