Advertisement
| 09.30.2008 at 09:48AM PDT, ID: 23775328 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: |
<HTML>
<style type="text/css">
<!--
.style2 {font-family: Arial, Helvetica, sans-serif}
.style4 {color: #FF0000}
.style5 {
font-size: 16px;
color: #0033FF;
}
.style6 {font-size: 9px}
.style7 {font-size: 24px}
-->
</style>
<BODY bgcolor="#E6E6E6">
<table width="91%" border="1" align="center">
<tr>
<td width="100%" bgcolor="#99FF33"><div align="center" class="style10 style9 style2 style7">Administración de la Base de Conocimientos</div></td>
</tr>
</table>
<?
//----------------------------------------------------------
//Inicialización de variables.
$DBhost = "192.168.8.999";
$DBuser = "test";
$DBpass = "";
$DBName = "test";
$table = "documentos";
//-------------------------------------------------------------------------------------
$db = mysql_connect($DBhost,$DBuser,$DBpass) or die("No fué posible conectarse con la Base de Datos.");
@mysql_select_db("$DBName",$db) or die("Unable to select database $DBName");
@$sql80 = "SELECT * FROM $table where departamento = '$sess_departamento' order by 'tipo', 'nombre', 'fecha' ";
$result50 = mysql_query($sql80);
//-------------------------------------------------------------------------------------
?>
<p> </p>
<table width="869" border="0">
<tr>
<td><span class="style5"><span class="style33 style2"><? echo "$sess_persona"; ?></span></span></td>
</tr>
<tr>
<td><span class="style5"><span class="style33 style2"><? echo "$sess_departamento"; ?></span></span></td>
</tr>
</table>
<p class="style6"> </p>
<table width="97%" height="25" border="1" align="left" cellpadding="1" cellspacing="0">
<tr>
<td width="8%"><div align="left" class="style4"><span class="style2">Tipo</span></div></td>
<td width="53%"><div align="left" class="style4"><span class="style2">Documento</span></div></td>
<td width="12%"><div align="left" class="style4"><span class="style2">Fecha</span></div></td>
<td width="10%"><div align="left" class="style4"><span class="style2">Versiones</span></div></td>
<td width="10%"><div align="left" class="style4"><span class="style2">Actualizar</span></div></td>
<td width="7%"><div align="left" class="style4"><span class="style2">Borrar</span></div></td>
</tr>
<?php
while ($row = mysql_fetch_array($result50)) {
echo "<tr>";
echo ('<td><div class="style2"><font name="arial">' . $row["tipo"] . '</div></font></td>');
echo ('<td><div class="style2"><font name="arial">' . $row["nombre"] . '</div></font></td>');
echo ('<td><div class="style2"><font name="arial">' . $row["fecha"] . '</div></font></td>');
echo ('<td><div class="style2"><font name="arial"><a href="archivosversiones.php?ses_clave='.$row["key"].'&ses_usuario='.$row["usuario"].'&ses_archivo='.$row["nombre"].'&ses_ruta='.$row["rutaorigen"].'&ses_fecha='.$row["fecha"].'">' . "Versiones" . '</a></font></td>');
echo ('<td><div class="style2"><font name="arial"><a href="archivosactualizados.php?ses_clave='.$row["key"].'&ses_usuario='.$row["usuario"].'&ses_archivo='.$row["nombre"].'&ses_ruta='.$row["rutaorigen"].'&ses_fecha='.$row["fecha"].'">' . "Actualizar" . '</a></font></td>');
echo ('<td><div class="style2"><font name="arial"><a href="prueba99.php?ses_clave='.$row["key"].'&ses_usuario='.$row["usuario"].'&ses_archivo='.$row["nombre"].'&ses_ruta='.$row["rutaorigen"].'&ses_fecha='.$row["fecha"].'">' . "Borrar" . '</a></font></td>');
echo "</tr>";
}
?>
</table>
<body>
</body>
</html>
|
Advertisement