Quick Search:
CODE
Oracle PL/SQL Code Library
JOBS
Find Or Post Oracle Jobs
FORUM
Oracle Discussion & Chat
 PHP Code: Add dashes to credit card numbers Jump to:  
Category: >> PHP Code >> Add dashes to credit card numbers

<<last next>>

Snippet Name: Add dashes to credit card numbers

Description: Easily add dashes to credit card numbers.

Comment: (none)

Language: PHP
Highlight Mode: PHP
Last Modified: March 01st, 2009

<? php
 
FUNCTION AddDash($CC_Num,$CC_Type){ 
IF ($CC_Type="VISA") { 
$NewCC=""; 
FOR ($i=0 ; $i < 4 ; $i++) 
$NewCC=$NewCC.SUBSTR($CC_Num, ($i*4), 4)."-"; 
} 
$NewCC=SUBSTR($NewCC,0,19); 
RETURN ($NewCC); 
} 
 
// Example : 
 
$new_cc_num=AddDash("4580458045804580","VISA"); 
ECHO"$new_cc_num"; 
 
?>
 

Free Oracle Magazine Subscriptions
and Oracle White Papers

SQL University.net courses meet the most demanding needs of the business world for advanced education in a cost-effective manner. SQL University.net courses are available immediately for IT professionals and can be taken without disruption of your workplace schedule or processes.

Compared to traditional travel-based training, SQL University.net saves time and valuable corporate resources, allowing companies to do more with less. That's our mission, and that's what we deliver.

Click here to find out more
 
Home      :      Code Library      :      Sponsors      :      Privacy      :      Terms of Use      :      Contact Us [43] visitors online    © 2009 psoug.org
PSOUG LOGIN
Username: 
Password: 
Forgot your password?