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; }
View Code
相關文章
相關標籤/搜索