0

我已经成功编写了一个动态表单,表单输出和数据发布到 mysql。我现在想做的是将我的 php 的输出保存到一个变量中,然后我可以将其传递给 html2pdf 以生成 pdf。我试图在下面概述我当前的文件以及我想要的内容。

我有的:

if submitted do this {
   post data stored to variables
   dynamic form output including:
       field validation
       form data displayed in multiple tables
       multiple foreach loops of dynamic data with html tables and php variables within table cells.
   }
else do this {
   display form and collect user input
    submit buttons
   }

我想要什么

if submitted do this {
   post data stored to variables

   $var1 = dynamic form output including:
       field validation
       form data displayed in multiple tables
       foreach loop of dynamic data

   echo $var1;
   }
else do this {
   display form and collect user input
    submit buttons
   }

它看起来不像 ob_start(); 和 ob_get_clean(); 让我到达我需要的地方,也不需要 php 的 heredoc 字符串。任何想法或例子将不胜感激。

4

0 回答 0