0

我正在尝试为我的网站创建一个存款只读参考字段,并将其作为发票号传递给贝宝。用于识别。参考编号 由函数日期填充,格式为 DD/MM/YY、名字和姓氏的第一个字符。(例如 05/07/13scottp)

我希望对所有可编辑字段进行必填字段验证,并在用户输入函数日期后填充存款参考....

我是 PHP 新手,不确定从哪里开始或实现我想要的结果的最佳实践。

我正在使用带有以下代码的 HTML 表单:

<form id="depositForm" name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">

    <div id="deposit-form" >
    <h1>Paying your deposit is Simple.....</h1>
    <p>Simply input all the details below, select your advised deposit option and click "Buy Now". It's that easy......</p>
    <p>Note: All fields marked <h7>*</h7> are required. Any Errors will be highlighted <h7>Red</h7>.

    <table>
    <tr>
    <td>
    <label for="depositFirstname">*Firstname:</label>
    <label for="depositSurname">*Surname:</label>
    <label for="depositFunctiondate">*Function Date:</label>
    <label for="depositOp">*Select deposit option:</label>
    <label for="depositRef">Booking Reference:</label>
    </td>
    </tr>
    <tr>
    <td>

    <input type="hidden" name="cmd" value="_xclick">
    <input type="hidden" name="business" value="XXXXXX">
    <input type="hidden" name="currency_code" value="GBP">
    <input type="hidden" name="country" value="United Kingdom" />
    <input type="hidden" name="no_shipping" value="1">
    <input type="hidden" name="item_name" value="Glimmer Nights Function Deposit">

    <input type="text" name="first_name" id="depositFirstname" />
    <input type="text" name="last_name" id="depositSurname" />
    <input type="text" name="depositFunctiondate" id="depositFunctiondate" />        
    <select size="1" name="amount" id="depositOp" class="input" />
        <option value="">Select</option>
        <option name="amount" value="30.00">Option 1</option>
        <option name="amount" value="50.00">Option 2</option>
    <input type="text" name="invoice" id="depositRef" readonly="depositRef()" value="" />
    </td>
    </tr>

    </table>

    <p>Should you have any questions, please do not hesitate to contact us........</p>
    <input type="image" src="http://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif"  name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
    </div>
</form>
4

1 回答 1

0

我认为你在正确的轨道上。请记住,您的表单会将其数据发布到标签action属性中列出的任何地址。<form>在这种情况下,您将所有表单数据直接发送到 PayPal。在发送数据之前,您没有机会运行任何 PHP 代码。两种选择:

1)更改action表单上的属性并将数据发布到您自己服务器上的 PHP 文件中。该文件将进行处理,然后向 PayPal 发送新请求。

2)这可能更容易。在用户单击提交之后但在数据发送之前,使用 javascript 制定发票编号。您可以通过向onsubmit表单添加属性来完成此操作。它看起来像这样:

<form id="depositForm" name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" onsubmit="generateInvoiceNo();" method="post">

然后通过在页面区域中插入一个<script>块来创建一个 javascript 函数:<head>

<script>
    function generateInvoiceNo(){
        //get the date, user's first name and last initial
        var d = new Date();
        var curr_date = d.getDate();
        var curr_month = d.getMonth() + 1; 
        var curr_year = d.getFullYear();
        var datestr = curr_date + "/" + curr_month + "/" + curr_year.substr(2)
        var firstname = document.getElementById('depositFirstname').value;
        var lastname = document.getElementById('depositLastname').value; 
        //generate invoice number
        var invoicenum = datestr + firstname + lastname.substr(0,1);
        //put the invoice number into a hidden field on the form
        document.getElementById('depositRef').value = invoicenum;
    }
</script>

警告:我没有测试上面的代码,但它应该让你开始。

于 2013-07-05T22:22:00.407 回答