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/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>";
   }
}

?>