abril 17, 2025

FEDETIRO

Federación Colombiana de Tiro Deportivo

Busqueda




if ($_SERVER["REQUEST_METHOD"] == "POST" && !empty($_POST['cedula'])) {
    global $wpdb;
    $table_name = $wpdb->prefix . "TCREDENCIALES2025"; 
    $cedula_buscar = sanitize_text_field($_POST['cedula']);

    $resultado = $wpdb->get_row(
        $wpdb->prepare("SELECT * FROM {$table_name} WHERE CEDULA = %s", $cedula_buscar),
        ARRAY_A
    );

    if ($resultado) {
        echo "Nombre: " . esc_html($resultado['NOMBRES Y APELLIDOS DEP']) . "<br>";
        echo "Estado: " . esc_html($resultado['Estado']) . "<br>";
        echo "Liga Deportista: " . esc_html($resultado['Liga Deportista']) . "<br>";
        echo "Club Deportista: " . esc_html($resultado['Club Deportista']) . "<br>";
    } else {
        echo "No se encontraron resultados.";
    }
}
?>