php 生成表单
Posted cuizhenyu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 生成表单相关的知识,希望对你有一定的参考价值。
function create_auto_html($params, $action) { $encodeType = isset ($params [‘encoding‘]) ? $params [‘encoding‘] : ‘UTF-8‘; $html = <<<eot <html> <head> <meta http-equiv="Content-Type" content="text/html; charset={$encodeType}" /> </head> <body onload="javascript:document.pay_form.submit();"> <form id="pay_form" name="pay_form" action="{$action}" method="post"> eot; foreach ($params as $key => $value) { $html .= " <input type=\"hidden\" name=\"{$key}\" id=\"{$key}\" value=\"{$value}\" />\n"; } $html .= <<<eot </form> </body> </html> eot; return $html; }
以上是关于php 生成表单的主要内容,如果未能解决你的问题,请参考以下文章