码迷,mamicode.com
首页 > Web开发 > 详细

php 生成表单

时间:2019-03-26 22:32:58      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:put   opened   utf-8   closed   pre   name   img   encode   post   

技术图片
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

 

php 生成表单

标签:put   opened   utf-8   closed   pre   name   img   encode   post   

原文地址:https://www.cnblogs.com/cuizhenyu/p/10604223.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!