关于在字符串变量中回显Post数据的问题

时间:2014-04-26 06:20:52

标签: php

尝试导出从POST函数收到的内容我有:

<?php
  if(isset($_POST['html']))
  {
    $content = $_POST['html'];

  }

require_once("dompdf_config.inc.php");
$codigo= '
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html> 
';
$codigo = utf8_decode($codigo);
$dompdf = new DOMPDF();
$dompdf->load_html($codigo);
ini_set("memory_limit","32M");
$dompdf->render();
$dompdf->stream("ejemplo.pdf");

现在我需要导出$content = $_POST['html'];字符串中的$codigo我尝试过以下内容:

$codigo= '
<!DOCTYPE html>
<html>
<head>
</head>
<body>
       '.echo $content; .'
</body>
</html>';

$codigo= '
<!DOCTYPE html>
<html>
<head>
</head>
<body>
       '. $content .'
</body>
</html>';

但我收到语法错误。能告诉我如何将POST数据插入到该内容中吗?

由于

2 个答案:

答案 0 :(得分:0)

使用它:

$codigo= "
<!DOCTYPE html>
<html>
 <head>
 </head>
 <body>
   {$content}
 </body>
</html>";

答案 1 :(得分:0)

我认为我们也有同样的困境。我正在努力从POST传递值。什么是PDF的输出,它是空白的吗?您可以查看以下内容:Processing dynamic PHP variable output with domPDF