dkinzer, on 02 April 2010, 15:08, said:
Steve
Posted 05 April 2010, 02:27
dkinzer, on 02 April 2010, 15:08, said:
Posted 05 April 2010, 18:21
Posted 06 April 2010, 02:47
tru-cast, on 05 April 2010, 18:21, said:
Quote
Posted 06 April 2010, 02:47
Quote
Edited by toyicebear, 06 April 2010, 02:48.
Posted 15 April 2010, 15:06
Posted 22 April 2010, 19:06
Posted 06 May 2010, 17:00
Posted 14 May 2010, 00:14
Posted 04 June 2010, 18:43
Posted 10 June 2010, 15:48
hojinni, on 04 June 2010, 18:43, said:
Posted 15 November 2010, 18:35
Posted 30 January 2011, 02:29
Posted 07 February 2011, 23:24
Posted 04 April 2011, 01:45
Edited by orosanto, 04 April 2011, 01:46.
Posted 08 May 2011, 01:34
Posted 10 May 2011, 20:38
if (ereg ("(^[0-9][0-9][0-9]$|^[0-9][0-9][0-9][0-9]$)", $HTTP_POST_VARS['cvv_number']) == 1){
$data .= $key . '=' . urlencode(ereg_replace(',', '', $value)) . '&';
if (preg_match('/^[0-9][0-9][0-9]$|^[0-9][0-9][0-9][0-9]$/', $HTTP_POST_VARS['cvv_number'])) {
$data .= $key . '=' . urlencode(preg_replace('/,/', '', $value)) . '&';
Edited by xtronics, 10 May 2011, 20:44.
Posted 11 May 2011, 16:24
xtronics, on 10 May 2011, 20:38, said:
if (ereg ("(^[0-9][0-9][0-9]$|^[0-9][0-9][0-9][0-9]$)", $HTTP_POST_VARS['cvv_number']) == 1){
$data .= $key . '=' . urlencode(ereg_replace(',', '', $value)) . '&';
if (preg_match('/^[0-9][0-9][0-9]$|^[0-9][0-9][0-9][0-9]$/', $HTTP_POST_VARS['cvv_number'])) {
$data .= $key . '=' . urlencode(preg_replace('/,/', '', $value)) . '&';
$this->cc_number = preg_replace('/[^0-9]/', '', $number);
if (preg_match('/^4[0-9]{12}([0-9]{3})?$/', $this->cc_number)) {
$this->cc_type = 'Visa';
} elseif (preg_match('/^5[0-5][0-9]{14}$/', $this->cc_number)) {
$this->cc_type = 'Master Card';
} elseif (preg_match('/^3[47][0-9]{13}$/', $this->cc_number)) {
$this->cc_type = 'American Express';
} elseif (preg_match('/^3(0[0-5]|[68][0-9])[0-9]{11}$/', $this->cc_number)) {
$this->cc_type = 'Diners Club';
} elseif (preg_match('/^6011[0-9]{12}$/', $this->cc_number)) {
$this->cc_type = 'Discover';
} elseif (preg_match('/^(3[0-9]{4}|2131|1800)[0-9]{11}$/', $this->cc_number)) {
$this->cc_type = 'JCB';
} elseif (preg_match('/^5610[0-9]{12}$/', $this->cc_number)) {
$this->cc_type = 'Australian BankCard';
Edited by xtronics, 11 May 2011, 16:26.
Posted 23 November 2011, 23:28
zelf, on 29 July 2009, 06:21, said:
Posted 26 December 2011, 20:27
Posted 20 April 2012, 05:19