• sb_elementor_contact_form_db.php

    Change line 92 – 117

    function sb_elem_cfd_download_csv() {

    if ( isset( $_REQUEST[‘download_csv’] ) ) {
    if ( isset( $_REQUEST[‘form_name’] ) ) {
    if ( $rows = sb_elem_cfd_get_export_rows( $_REQUEST[‘form_name’] ) ) {

    header( ‘Content-Type: application/csv’ );
    header( ‘Content-Disposition: attachment; filename=’ . sanitize_title( $_REQUEST[‘form_name’] ) . ‘.csv’ );
    header( ‘Pragma: no-cache’ );
    echo implode( “\n”, $rows );
    die;
    }
    }

    if ( isset( $_REQUEST[‘form_id’] ) ) {
    if ( $rows = sb_elem_cfd_get_export_rows_by_form_id( $_REQUEST[‘form_id’] ) ) {

    header( ‘Content-Type: application/csv’ );
    header( ‘Content-Disposition: attachment; filename=’ . sanitize_title( $_REQUEST[‘form_id’] ) . ‘.csv’ );
    header( ‘Pragma: no-cache’ );
    echo implode( “\n”, $rows );
    die;
    }
    }
    }
    }`

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘TO EVERYONE HAVING ISSUES WITH EXPORTING CSV’ is closed to new replies.