- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在显示从 PHP 数据库中获取数据的 HTML 表,并在 PDF 页面中导出它...一切都很好,但是当下载 PDF 文件时,除了来自 Mysql 的值外,它在表中显示 php 代码,并且问题在于引号,那么如何用引号编写代码,使其在 php 代码之外的表中准确显示值?
当点击它时
<a href="file.php" class="export-pdf" data-filename="PDFFILE"><button type="button" class="btn btn-success">PDF FORMAT</button></a>
以 PDF 代码“FILE.PHP”导出表格
<?php require_once 'components/app.php'; ?>
<?php
include('mpdf/mpdf.php');
$mpdf=new mPDF();
$mpdf->WriteHTML("
<table id='fixed_table' class='table table-bordered table-hover'>
<thead>
<tr>
<th>District</th>
<th>Union Council</th>
<th>Village</th>
<th>Recreational</th>
<th>Awareness Raising</th>
<th>Training</th>
<th>Social Mobilization</th>
<th>Total Activities</th>
</tr>
</thead>
<tbody>
<tr>
<td style='color:red;'><b><?php echo getTotalDistrictUnique();?></b></td>
<td style='color:red;'><b><?php echo getTotalUnionCouncilUnique();?></b></td>
<td style='color:red;'><b><?php echo getTotalVillages(); ?></b></td>
<td style='color:red;'><b><?php echo getTotalRecreational();?></b></td>
<td style='color:red;'><b><?php echo getTotalAwareness();?></b></td>
<td style='color:red;'><b><?php echo getTotalTraining();?></b></td>
<td style='color:red;'><b><?php echo getTotalSocial();?></b></td>
<td style='color:red;'><b><?php echo getTotalRecreational() + getTotalAwareness() + getTotalTraining() + getTotalSocial(); ?></td>
</tr>
<?php
include('connection.php');
$query ='select * from general';
$run =mysqli_query($con,$query);
while ($row=mysqli_fetch_array($run)) {
$id=$row[0];
$createdate=$row[1];
$createday=$row[2];
$partnername=$row[3];
$district=$row[4];
$unioncouncil=$row[5];
$village=$row[6];
$vannumber=$row[7];
$facilitator=$row[8];
$beneficiarytype=$row[9];
$rmultimedia=$row[10];
$rgame=$row[11];
$rsprort=$row[12];
$rart=$row[13];
$rgroupreading=$row[14];
$rother=$row[15];
$alandminer=$row[16];
$apersonalsafety=$row[17];
$abirthregister=$row[18];
$aother=$row[19];
$tstickstone=$row[20];
$tohthers=$row[21];
$sbirthregister=$row[22];
$sother=$row[23];
$formnumber=$row[24];
$submitdatatime=$row[25];
?>
<tr>
<td><?php echo $district?></td>
<td><?php echo $unioncouncil?></td>
<td><?php echo $village?></td>
<td>
<?php
if($rmultimedia=='true')
{
$rmultimedia_value = 1;
}
else{
$rmultimedia_value = 0;
}
if($rgame=='true')
{
$rgame_value = 1;
}
else{
$rgame_value = 0;
}
if($rsprort=='true')
{
$rsprort_value = 1;
}
else{
$rsprort_value = 0;
}
if($rart=='true')
{
$rart_value = 1;
}
else{
$rart_value = 0;
}
if($rgroupreading=='true')
{
$rgroupreading_value = 1;
}
else{
$rgroupreading_value = 0;
}
if($rother=='true')
{
$rother_value = 1;
}
else{
$rother_value = 0;
}
$recreational_sum = $rmultimedia_value + $rgame_value + $rsprort_value + $rart_value + $rgroupreading_value + $rother_value;
echo $recreational_sum;?></td>
<td>
<?php
if($alandminer=='true')
{
$alandminer_value = 1;
}
else{
$alandminer_value = 0;
}
if($apersonalsafety=='true')
{
$apersonalsafety_value = 1;
}
else{
$apersonalsafety_value = 0;
}
if($abirthregister=='true')
{
$abirthregister_value = 1;
}
else{
$abirthregister_value = 0;
}
if($aother=='true')
{
$aother_value = 1;
}
else{
$aother_value = 0;
}
$awareness_raising_sum = $alandminer_value + $apersonalsafety_value + $abirthregister_value + $aother_value;
echo $awareness_raising_sum;?>
</td>
<td>
<?php
if($tstickstone=='true')
{
$tstickstone_value = 1;
}
else{
$tstickstone_value = 0;
}
if($tohthers=='true')
{
$tohthers_value = 1;
}
else{
$tohthers_value = 0;
}
$training_sum = $tstickstone_value + $tohthers_value;
echo $training_sum;?>
</td>
<td>
<?php
if($sbirthregister=='true')
{
$sbirthregister_value = 1;
}
else{
$sbirthregister_value = 0;
}
if($sother=='true')
{
$sother_value = 1;
}
else{
$sother_value = 0;
}
$social_mobilization_sum = $sbirthregister_value + $sother_value;
echo $social_mobilization_sum;?>
</td>
<td style='color:red;'><?php echo $recreational_sum + $awareness_raising_sum + $training_sum + $social_mobilization_sum;?></td>
</tr>
<?php } ?>
</tbody>
</table>
");
$mpdf->Output(); exit;
?>
最佳答案
你的代码很乱。字符串中的 PHP 代码只是一个字符串,不再是代码。您应该正确编写代码。
<?php
require_once 'components/app.php';
include('connection.php');
include('mpdf/mpdf.php');
$content = '
<table id="fixed_table" class="table table-bordered table-hover">
<thead>
<tr>
<th>District</th>
<th>Union Council</th>
<th>Village</th>
<th>Recreational</th>
<th>Awareness Raising</th>
<th>Training</th>
<th>Social Mobilization</th>
<th>Total Activities</th>
</tr>
</thead>
<tbody>
<tr>
<td style="color:red;"><b>' . getTotalDistrictUnique() . '</b></td>
<td style="color:red;"><b>' . getTotalUnionCouncilUnique() . '</b></td>
<td style="color:red;"><b>' . getTotalVillages() . '</b></td>
<td style="color:red;"><b>' . getTotalRecreational() . '</b></td>
<td style="color:red;"><b>' . getTotalAwareness() . '</b></td>
<td style="color:red;"><b>' . getTotalTraining() . '</b></td>
<td style="color:red;"><b>' . getTotalSocial() . '</b></td>
<td style="color:red;"><b>' . (getTotalRecreational() + getTotalAwareness() + getTotalTraining() + getTotalSocial()) . '</td>
</tr>
';
$query ='select * from general';
$run =mysqli_query($con,$query);
while ($row=mysqli_fetch_array($run)) {
$id=$row[0];
$createdate=$row[1];
$createday=$row[2];
$partnername=$row[3];
$district=$row[4];
$unioncouncil=$row[5];
$village=$row[6];
$vannumber=$row[7];
$facilitator=$row[8];
$beneficiarytype=$row[9];
$rmultimedia=$row[10];
$rgame=$row[11];
$rsprort=$row[12];
$rart=$row[13];
$rgroupreading=$row[14];
$rother=$row[15];
$alandminer=$row[16];
$apersonalsafety=$row[17];
$abirthregister=$row[18];
$aother=$row[19];
$tstickstone=$row[20];
$tohthers=$row[21];
$sbirthregister=$row[22];
$sother=$row[23];
$formnumber=$row[24];
$submitdatatime=$row[25];
$rmultimedia_value = $rmultimedia == 'true' ? 1 : 0;
$rgame_value = $rgame == 'true' ? 1 : 0;
$rsprort_value = $rsprort == 'true' ? 1 : 0;
$rart_value = $rart == 'true' ? 1 : 0;
$rgroupreading_value = $rgroupreading == 'true' ? 1 : 0;
$rother_value = $rother == 'true' ? 1 : 0;
$recreational_sum = $rmultimedia_value + $rgame_value + $rsprort_value + $rart_value + $rgroupreading_value + $rother_value;
$alandminer_value = $alandminer == 'true' ? 1 : 0;
$apersonalsafety_value = $apersonalsafety == 'true' ? 1 : 0;
$abirthregister_value = $abirthregister == 'true' ? 1 : 0;
$aother_value = $aother == 'true' ? 1 : 0;
$awareness_raising_sum = $alandminer_value + $apersonalsafety_value + $abirthregister_value + $aother_value;
$tstickstone_value = $tstickstone == 'true' ? 1 : 0;
$tohthers_value = $tohthers == 'true' ? 1 : 0;
$training_sum = $tstickstone_value + $tohthers_value;
$sbirthregister_value = $sbirthregister == 'true' ? 1 : 0;
$sother_value = $sother == 'true'? 1 : 0;
$social_mobilization_sum = $sbirthregister_value + $sother_value;
$content .= '
<tr>
<td>' . $district . '</td>
<td>' . $unioncouncil . '</td>
<td>' . $village . '</td>
<td>' . $recreational_sum . '</td>
<td>' . $awareness_raising_sum . '</td>
<td>' . $training_sum . '</td>
<td>' . $social_mobilization_sum . '</td>
<td style="color:red;">' . ($recreational_sum + $awareness_raising_sum + $training_sum + $social_mobilization_sum) . '</td>
</tr>';
}
$content .= '</tbody></table>';
$mpdf=new mPDF();
$mpdf->WriteHTML($content);
$mpdf->Output();
exit;
?>
关于php - 在双引号或单引号中打印 HTML 和 PHP 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44697891/
我正在尝试在引号内使用引号。它在文本框内工作,但在我需要字符串的地方不工作。例如,第一行代码有效,但我需要将字符串作为变量。 pictureBox1.Image = MediaLib.Get["che
我需要找到一种方法来检查字符串中的双引号,以便将输出写入 XML 文档,然后在 Word 中打开。我想出了如何查找像 (') 这样的单引号,但是双引号在我的 XML 文档中引发了错误。 pr
我正在尝试在引号内使用引号。它在文本框内工作,但在我需要字符串的地方不工作。例如,第一行代码有效,但我需要将字符串作为变量。 pictureBox1.Image = MediaLib.Get["che
我定义了一个由动态变量组成的变量 var tempVar = ""; varName输出Black/Blue Mirror + some special character with single a
我在 Jenkins 管道中运行了这个 shell 脚本 def planResults = sh(returnStdout: true, script: "cd $it; PLAN=\$(terra
双引号 ("") 怎么可能有一个方法,即使您实际上没有在 String 中声明它。例如: System.out.println("".length()); "" 是否已经是一个对象,但没有在 Stri
我刚刚开始阅读“Head First Java”这本书。由于下面代码中没有空格的双引号 (""),有一个练习让我感到困惑。我想我明白了,但看起来这本书并没有解释它,我想确保我是正确的。 下面代码中双引
我有一个名为 myfield 的字段,其中包含以下字符串: {'Content-Language': 'en', 'X-Frame-Options': 'SAMEORIGIN', 'X-Generat
这是一个 nodejs 正则表达式,它将引号替换为 json 解析器接受的新模式。 var someStr = "this string has one single quote ': this st
当查询列表并将值放入变量并尝试在另一个脚本中使用该变量时,它确实获得了所需的格式。 脚本 1: cilist=$(opr-ci-list.sh -view_name TN_UD_REFRESH_MRE
我正在尝试在 powershell 中调用 curl 命令并传递一些 JSON 信息。 这是我的命令: curl -X POST -u username:password -H "Content-Ty
我使用 terraform 创建了一个 YML 管道。 它使用脚本任务并在输出中返回 Web 应用程序名称 steps: - script: | [......] terraform
我的项目由Docker包装,并在2种环境中运行:代理后面的或没有代理的。 在这种情况下,我使用php:apache镜像并通过pecl安装ext,因此必须手动设置代理 FROM php:apache R
我是 Clang-Format 的新手。 我使用 ./bin/clang-format -style=google -dump-config > .clang-format 作为我的基础 .clang
我试图在从数据库读取数据后生成 CSV 文件。现在单个数据可以包含逗号、单引号和双引号。 请告诉我如何在正则表达式的帮助下处理这种情况。 最佳答案 您可以为 CSV 文件使用不同的分隔符吗?也许是一个
我全新安装了 janus vim 插件和 macvim。 由于某种原因,当我在 macvim 中打开 .json 文件时,.json 文件中的键或值周围没有双引号。当我向下滚动文件的行时,双引号会显示
我的属性结构如下: my { property { item { "1" { value="some value"
这个问题已经有答案了: How to escape single quotes in MySQL (19 个回答) 已关闭 5 年前。 考虑这个表 CREATE TABLE name ( nom VA
我面临 SyntaxError: unterminated string literal* 尝试在文本区域中设置值时出错。 这里,文本值是动态的,从后端接收,可以包含任何字符。 经过我的第一次调查,我
我正在尝试设置包含单引号的属性值: var attr_value = "It's not working"; var html = "Text"; $('body').html(html); 但是,我
我是一名优秀的程序员,十分优秀!