小编Roh*_*tal的帖子

如何确保 HTML 和 Ajax 请求符合 PCI 标准

我正在将eWayPHP 中的支付网关与定期支付集成在一起。它适用于澳大利亚地区。我准备了以下HTML表格:

<form action="submit.php" method="post" id="signup-form" class="creditly-card-form agileinfo_form">
    <div class="signup-form credit-wrapper">
        <div class="control full-flex">
            <div class="form-control first">
                <input type="email" name="email" id="email" placeholder="Email Address"/>
            </div>
            <div class="form-control last">
                <input type="text" name="username" id="username" placeholder="Username"/>
            </div>
        </div>

            <div class="control full">
            <div class="form-control">
                <input type="text" name="cardholder_name" id="cardholder_name" placeholder="Name On Card" class="billing-address-name form-control"/>
            </div>
        </div>
        <div class="control full">
            <div class="form-control">
                <div class="card-type"></div>
                <input type="text" name="cardnumber" id="cardnumber" pattern="(\d*\s){3}\d*" class="credit-card-number form-control" autocomplete="cc-number" autocompletetype="cc-number" x-autocompletetype="cc-number" />
            </div>
        </div>
        <div class="control full-flex">
            <div class="form-control first"> …
Run Code Online (Sandbox Code Playgroud)

php ajax payment-gateway pci-compliance

0
推荐指数
1
解决办法
313
查看次数

标签 统计

ajax ×1

payment-gateway ×1

pci-compliance ×1

php ×1