在将数据提交给paypal之前,如何使用php数据验证paypal表单

时间:2013-05-26 03:03:29

标签: php html paypal

我有以下表格

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="N8Q3XBTNBV8TY">
<table>
<tr><td><input type="hidden" name="on0" value="Team Name">Team Name</td></tr><tr><td><input type="text" name="os0" maxlength="200"></td></tr>
</table>
<input type="image" src="https://www.sandbox.paypal.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.sandbox.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>

我想验证(使用php)团队名称在提交表单之前至少有三个字符。我该如何实现呢?

1 个答案:

答案 0 :(得分:4)

您不能(如果您直接向PayPal提交,就像您在代码示例中一样),使用PHP。但你可以使用javascript。

<script>
// using jQuery, just cuz it's easier for this sort of stuff
$('form[action*="paypal"]').submit(function(event) {
    if ($('input[name="on0"]').val().length < 3) {
        event.preventDefault();
        // alert, or use some other means of displaying an error to the user
        alert('Your Team Name must be at least 3 characters long');
        return false;
    }
});
</script>