mock credit card with mysql & filewriter INSERT into mysql Programming Software Development by ceyesuma …, IOException{ int i=0; List<CreditCard> creditCards = new ArrayList<CreditCard>(); query = "…")); card.setTotalPayments(rs.getDouble("PYMNT")); creditCards.add(card); } return creditCards; } } [/code] [code] Enter password:… Visual Basic.NET - How To Learn It Fastly & What To Use Programming Software Development by JEKYS … easy programming language ? Thank You _________________ [url=http://www.us-creditcards.com]Instant approval credit cards for bad credit[/url] [url… Optimizing tables to compare bilions of rows. How? Programming Databases by JEKYS … and compare all this data? _________________ [url=http://www.us-creditcards.com]Instant approval credit cards for bad credit[/url] [url… Job In US Community Center by vibgyor … see job recruiting ads with 'Exp in Banking', 'Exp in Creditcards','Exp in Trading'. I get a little puzzled with such… Payment gateways?( urgent) Programming Web Development by ahmksssv … for gateways..here my requirement is it should access all creditcards payments with secure..... i dont know the code is in… Simple HTML form not working Programming Web Development by RisTar …="functions/process_payment.php" > <table id="creditCards"> <tr> <td><input… Re: I want to start an ecommerce site, but HOW? Digital Media Digital Marketing by Traditional …. Now decide if you want to accept creditcards or not. If you do accept creditcards you have two choices. Accept them through… Re: extrat specific xml element and convert it into byte array Programming Software Development by CloneXpert kk i help a little. [CODE] XmlDocument xdoc; xdoc = new XmlDocument(); xdoc.Load("yourxmlfile.xml"); XmlNodeList creditcards = xdoc.GetElementsByTagName("creditcard"); string s = creditcards[0].InnerXml.ToString() ; [/CODE] if you want the plain data use .InnerText Re: Returning a subclass object using superclass Programming Software Development by JamesCherrill … of Cards - which can be any mixture of Cards or CreditCards because CreditCard is a subclass of Card. If you create… a mixture of Cards and CreditCards and store them in your array then the find method… Re: How many credit cards do you have? Community Center Geeks' Lounge by jwenting that's where creditcards are better than debit cards... The CC company insures you against that (minus the first few hundred dollars usually), a bank doesn't insure you if someone plunders your bank account. Re: Please Help With MGMRWMRV.EXE Hardware and Software Information Security by PhilliePhan … machine may have been compromised.... Keep an eye on the creditcards, etc... For the ComboFix download, in Firefox click [B]Tools… Re: credit card numbber Programming Software Development by VernonDozier … file earlier in the program. ifstream ins; ins.open("creditcards.txt"); `The ins >> ct >> cn… Re: Robot.txt Digital Media Digital Marketing Search Engine Strategies by almostbob note the corrections in allenhill99 & creditcards replies robot.txt is nothing the file must be named robots.txt Re: Visual Basic.NET - How To Learn It Fastly & What To Use Programming Software Development by debasisdas what do you mena by [B]Which software should i use [/B] ? Re: Optimizing tables to compare bilions of rows. How? Programming Databases by Nige Ridd One thing you need to think about is do you actually need to store a row per hit of the web-site? Could you just not have a small table which counts the hits per site? If you do need each hit - you could hold each hit in a log type table, then have a batch process which overnight summarises this data onto a report table which you then use to … Re: Job In US Community Center by Alex Edwards You can try getting in touch with the recruiters to see what kind of skills they're seeking. You may also find yourself required to read or take a course on a different subject (such as Database Access/Administration via SQL/Oracle, XML, HTML (XHTML), C#, Java, .NET, etc), and possess other skills (QA, Leadership, Experience in Agile Methods, … Re: Job In US Community Center by vibgyor Thanks for your reply. Yep, I am experienced in Oracle, XML, Perl, HTML inaddition to C++. I am wondering what extra expertise is needed to apply for Job postings which says 'Exp in Banking' or 'Exp in Financial industry is a must' ? Can I ,from other domain, apply to such Financial job postings? Should I get any certificate fot it or what?… Re: Job In US Community Center by Narue >I am wondering what extra expertise is needed to apply for Job postings >which says 'Exp in Banking' or 'Exp in Financial industry is a must' ? Basically, you're expected to have worked in that industry before. You'll be asked to do things that require knowledge of the concepts, terminology, and conventions specific to the industry. &… Re: Payment gateways?( urgent) Programming Web Development by almostbob contact paypal sign up as a merchant add the code they give you Re: Payment gateways?( urgent) Programming Web Development by ahmksssv [QUOTE=almostbob;813789]contact paypal sign up as a merchant add the code they give you[/QUOTE] Hi almostbob, Thanks for ur quick reply.... contact paypal means? which is the best one ... i need more explanation about this...my client doesn't give me any paypal options or information...he said that, they want paypal with all … Re: Payment gateways?( urgent) Programming Web Development by cwarn23 I can tell you that when almostbob said contact paypal, he would have meant to perhaps send an email to the group named paypal or to contact the paypal group via online form. Re: Payment gateways?( urgent) Programming Web Development by Shanti C You can create an account with them to access their service [URL="https://www.paypal.com/in/cgi-bin/webscr?cmd=_flow&SESSION=BIgGazPl4X324hxcJGue5gveeTyUdXJngXN5ewABBVwCdy9aRdt6WuVDYBO&dispatch=5885d80a13c0db1fa798f5a5f5ae42e71cf8ee1e360382336fe24cc0d575d12c"]here[/URL]... Or go for help [URL="https://www.paypal.com/… Re: Payment gateways?( urgent) Programming Web Development by ahmksssv Thank U mam... Re: Simple HTML form not working Programming Web Development by muralibobby2015 [CODE] <form method="POST" action="functions/process_payment.php" > [/CODE] use like this. why you are using form methode post in capitals. [CODE]method="post"[/CODE] Re: Simple HTML form not working Programming Web Development by RisTar It doesn't really matter since it's case-insensitive.... It's really frustrating I just don't see the problem! im starting to think that there is a problem on my local server settings.... Re: Simple HTML form not working Programming Web Development by SKANK!!!!! lol u cant print the $_POST thats not right.u have to echo [CODE]$_POST[name of the text field here]; echo $_POST[creditCard]; make sure to use mysql_real_escape_string() if u are entering it in the databse? [/CODE] Re: Simple HTML form not working Programming Web Development by RisTar $_POST is an associative array. print_r() Prints human-readable information about a variable and it is the best function to use when you want to print arrays... since $_POST is an array, the best way to echo it is using print_r()... I tried echo before printing the whole array and it's not working! Re: Simple HTML form not working Programming Web Development by almostbob yours [icode]<input type="text" name"CardHolderName"[/icode] mine [icode]<input type='text' name='CardHolderName'[/icode] ?? Re: Simple HTML form not working Programming Web Development by SKANK!!!!! ristar, if ur not going to even look at my post right, then i just wont help you. print_r is rediculous to use. u just need to echo each variable seperately! Re: Simple HTML form not working Programming Web Development by rajarajan2017 [CODE]echo $_POST['cardHolderName'][/CODE] print_r will print array values.