在 PHP 文件 PHPExcel 中显示来自 SQL 的变量

问题描述 投票:0回答:0

我有两行代码需要帮助。在这里永远都是 SQL 东西的新手

我需要添加域 url 字段 我已经设法将新列添加到 SQL 我已经设法将新字段添加到表单中以插入到 SQL 中 表单成功地更改了 SQL 等中的数据。我研究了如何将数据从 sql 添加到 php,但是我尝试的每个示例都破坏了过程

在下面的行中,我需要更改硬编码值 -> demo.domain.com/ <- the column name I added to SQL is domain_url

    $objWriter->save(str_replace(__FILE__,'demo.domain.com/exported-files/demo-orders-from'.str_replace('/','-',$queue_from_date).'-to'.str_replace('/','-',$queue_to_date).'-'.$queue_id.'.xls',__FILE__));
        
        
        $mail->addAttachment('demo.domain.com/exported-files/demo-orders-from'.str_replace('/','-',$queue_from_date).'-to'.str_replace('/','-',$queue_to_date).'-'.$queue_id.'.xls');
    
php mysqli phpexcel
© www.soinside.com 2019 - 2024. All rights reserved.