Putting credit card payment on your website using Paypal
I created a new stuff on how to put an online credit card payment on your codeigniter website using Paypal Website payment Pro DoDirectPayment and would like to share this to you, hope it helps!. 1. You need to have a paypal account and then apply for a website payment pro, just visit paypal.com (www.paypal.com) for more info. 2. You should have the paypal API Username, Password and Signature,...
Read MoreFinding duplicates/triplicates records on MYSQL
MySQL statement that will query records with more than 1 results: Example: you will query to display the email address and total count of email address exist on the recordset $sql = "SELECT emailaddress, COUNT(emailaddress) AS TotalCount FROM tbl_users GROUP BY emailaddress HAVING ( COUNT(emailaddress) > 1 )";
Read More




