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/www/callcenter/includes/actuaciones.php
<?php

$result= mysql_query('SELECT id, dependencia, cargo, actuaciones, fecha,funcionario, hora FROM actuaciones_callcenter WHERE cedula = "'.$_GET["cedulita"].'" and ticket="'.$_GET["atencion"].'" order by id ');
if (!$result) {
		die('Error de consulta: ' . mysql_error());
}

if(mysql_num_rows($result) != 0)
{
	echo "<center><table width=100% border=1 cellpadding=1 cellspacing=1>
 
  	<tr>
 	<td width='150' class='tdtitulo'>Responde</td>
    <td class='tdtitulo' width='400'>Actuaci&oacute;n</td>
	<td width='75' class='tdtitulo'>Cargo</td>
    <td width='75' class='tdtitulo'>Fecha</td>
    <td width='65' class='tdtitulo'>Funcionario</td>
	<td width='65' class='tdtitulo'>Hora Registro</td>
  	</tr></center>";

  	while(list($id, $dependencia, $cargo_actuacion, $actuacion, $fecha, $funcionario, $hora) = mysql_fetch_row($result))
   	{
		echo  "<tr class=lista>
		<td class='tdfull'>$dependencia</td>
		<td class='tdfull justify'>$actuacion</td>
		<td class='tdfull'>$cargo_actuacion</td>
		<td class='tdfull'>$fecha</td>
		<td class='tdfull'>$funcionario</td>
		<td class='tdfull'>$hora</td></tr>";
   }
}

?>