在通过php获取当前页面的代码之前,如何获取HTML页面并准备就绪?

时间:2019-03-23 07:26:38

标签: php html

我在这里有两页。我使用第一页(mpdfData.php)来获取数据。然后,我将数据发送到第二页(mpdfPage.php),以创建一个HTML页面,其中包含我从第一页发送的数据。

想法是形成第二页,并通过第一页中的PHP代码将其从HTML转换为PDF,从而将其用于打印PDF。

我面临的问题是,当我将第二页的HTML代码返回到第一页时,确实显示了我从第一页发送的值,而不是代码本身<?php echo $user?>和{{1 }}显示在目标PDF中。

我该如何克服?

<?php echo $pass?>
<!-- mpdfData.php -->
<?php
$html="";
if (isset($_POST['submit'])) {
    $user=$_POST['userName'];
    $pass=$_POST["password"]; 
    ?><div hidden><?php
    include 'mpdfPage.php'; 
    ?><div><?php

}

if ($html !== '') {
require_once __DIR__ . '/vendor/autoload.php';
    // Create an instance of the class:
    $mpdf = new \Mpdf\Mpdf();

    // Write some HTML code:
    $mpdf->WriteHTML($html);

    // Output a PDF file directly to the browser
    $mpdf->Output();
}

?>

<html>
<head>
<title>User Login</title>
<link rel="stylesheet" type="text/css" href="styles1.css" />
</head>
<body>
<form name="frmUser" method="post" action="">
  <div class="message1"><h2>PDF PAGE:</h2></div>
    <table border="0" cellpadding="10" cellspacing="1" width="500" align="center" class="tblLogin">
      <tr class="tableheader">
      <td align="center" colspan="2">Enter PDF Details</td>
      </tr>
      <tr class="tablerow">
      <td>
      <input type="text" name="userName" placeholder="User Name" class="login-input"></td>
      </tr>
      <tr class="tablerow">
      <td>
      <input type="password" name="password" placeholder="Password" class="login-input"></td>
      </tr>
      <tr class="tableheader">
      <td align="center" colspan="2">
        <input type="submit" name="submit" value="Print Pdf" class="btnSubmit"></td>
       </tr>
    </table>

</form>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

由于file_get_contents(__FILE__)而导致的问题不执行PHP代码,它将提供文件的原始内容。 您可以通过以下方式实现。

<?php ob_start(); ?>

<html>
<head>
<style>
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}
</style>
</head>
<body>

<h2>HTML Table</h2>
<form name="table" method="post" action="">
<table>

  <tr>
    <th>User Name</th>
    <th>Password</th>
  </tr>
  <tr>
    <td><?php echo $user?></td>
    <td><?php echo $pass?></td>
  </tr>

</table>
</form>
</body>
</html>

<?php $html = ob_get_clean(); ?>