How to get a prepaid card script program to make random numbers for my website to start a business?


Question:
as example: i wanna make a card the same idea as the mobile prepaid cards or bank prepaid cards but for other business & i wanna know how to get the script or the application program that makes the random number logarethem to put it inside my website & when the customer scrach the card & add the no.s in the website the website accept it & let 'em pass to buy as example !plz who got a solution send me it ! thanks alot

Answer:
This is super simple.

Here is the code in JSP

String random_string = "";
String alpha_char = "ABCDEFGHIJKLMNOPQRSTUVWXYZabc...
String num_char = "1234567890";
int alpha_num_choice, alpha_choice, num_choice;

for (int i=0; i<10; i++) {
alpha_num_choice = (int) (Math.random() * 2);
if (alpha_num_choice == 0) {
alpha_choice = (int) (Math.random() * 52);
random_string = random_string + alpha_char.charAt(alpha_choice...
} else {
num_choice = (int) (Math.random() * 10);
random_string = random_string + num_char.charAt(num_choice);
}
}

Basically, what the codes above do is to randomly pick a number and then get a character at that position. I am a web developer myself. If you have any questions, please let me know.
More Related Questions & Answers...
  • I gave my business card w my e-mail to a girl I've exchanged many smiles with on the subway- right move?
  • Does anyone know where I can buy some blank business cards that have a picture of a boxer (dog) on it?
  • Can I create my own business card and download to copy on the cards?
  • What software would you recommend to create a business card?
  • What are the requirements for starting a heating and cooling business in Idaho, if I got my HVAC card already?
  • Is Robert Sole an unfortunate name when your business card only carries your first name initial?
  • I am trying to make a business card and flyer for my new after school tutoring program.?
  • Can I put my "business card" on my yahoo email signature?
  • Where can I get free business cards?
  • A charge just appeared on my card for a business listed as "VIP Tune." Have you ever heard of this company?
  • The questions and answers post by the user, for information only, AnswersRoom.com does not guarantee the right
    Copyright © 2007 AnswersRoom.com -   Terms of Use -   Contact us

    Hot Topic